This repository was archived by the owner on Jan 16, 2025. It is now read-only.
File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -25,9 +25,10 @@ module "runners" {
25
25
instance_max_spot_price = each. value . runner_config . instance_max_spot_price
26
26
block_device_mappings = each. value . runner_config . block_device_mappings
27
27
28
- runner_architecture = each. value . runner_config . runner_architecture
29
- ami_filter = each. value . runner_config . ami_filter
30
- ami_owners = each. value . runner_config . ami_owners
28
+ runner_architecture = each. value . runner_config . runner_architecture
29
+ ami_filter = each. value . runner_config . ami_filter
30
+ ami_owners = each. value . runner_config . ami_owners
31
+ ami_id_ssm_parameter_name = each. value . runner_config . ami_id_ssm_parameter_name
31
32
32
33
sqs_build_queue = { " arn" : each.value.arn }
33
34
github_app_parameters = local. github_app_parameters
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ variable "multi_runner_config" {
38
38
})
39
39
ami_filter = optional (map (list (string )), null )
40
40
ami_owners = optional (list (string ), [" amazon" ])
41
+ ami_id_ssm_parameter_name = optional (string , null )
41
42
create_service_linked_role_spot = optional (bool , false )
42
43
delay_webhook_event = optional (number , 30 )
43
44
disable_runner_autoupdate = optional (bool , false )
You can’t perform that action at this time.
0 commit comments