Skip to content

Commit

Permalink
fix: invalid refs from internal testing
Browse files Browse the repository at this point in the history
  • Loading branch information
taharah committed Sep 13, 2023
1 parent 090c116 commit bd4831f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/multi-runner/runners.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module "runners" {
for_each = local.runner_config
aws_region = var.aws_region
aws_partition = var.aws_partition
vpc_id = coalesce(each.value.vpc_id, var.vpc_id)
subnet_ids = coalesce(each.value.subnet_ids, var.subnet_ids)
vpc_id = coalesce(each.value.runner_config.vpc_id, var.vpc_id)
subnet_ids = coalesce(each.value.runner_config.subnet_ids, var.subnet_ids)
prefix = "${var.prefix}-${each.key}"
tags = merge(local.tags, {
"ghr:environment" = "${var.prefix}-${each.key}"
Expand Down

0 comments on commit bd4831f

Please sign in to comment.