Skip to content
This repository has been archived by the owner on Jan 16, 2025. It is now read-only.

Commit

Permalink
fix(multi-runner): Missing ami_id_ssm_parameter_name parameter from m…
Browse files Browse the repository at this point in the history
…ulti-runner #2883 (#2911)
  • Loading branch information
idog-orca authored Feb 10, 2023
1 parent abdc3ac commit 19138d9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions modules/multi-runner/runners.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ module "runners" {
instance_max_spot_price = each.value.runner_config.instance_max_spot_price
block_device_mappings = each.value.runner_config.block_device_mappings

runner_architecture = each.value.runner_config.runner_architecture
ami_filter = each.value.runner_config.ami_filter
ami_owners = each.value.runner_config.ami_owners
runner_architecture = each.value.runner_config.runner_architecture
ami_filter = each.value.runner_config.ami_filter
ami_owners = each.value.runner_config.ami_owners
ami_id_ssm_parameter_name = each.value.runner_config.ami_id_ssm_parameter_name

sqs_build_queue = { "arn" : each.value.arn }
github_app_parameters = local.github_app_parameters
Expand Down
1 change: 1 addition & 0 deletions modules/multi-runner/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ variable "multi_runner_config" {
})
ami_filter = optional(map(list(string)), null)
ami_owners = optional(list(string), ["amazon"])
ami_id_ssm_parameter_name = optional(string, null)
create_service_linked_role_spot = optional(bool, false)
delay_webhook_event = optional(number, 30)
disable_runner_autoupdate = optional(bool, false)
Expand Down

0 comments on commit 19138d9

Please sign in to comment.