Skip to content

Commit bd4831f

Browse files
committed
fix: invalid refs from internal testing
1 parent 090c116 commit bd4831f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/multi-runner/runners.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module "runners" {
33
for_each = local.runner_config
44
aws_region = var.aws_region
55
aws_partition = var.aws_partition
6-
vpc_id = coalesce(each.value.vpc_id, var.vpc_id)
7-
subnet_ids = coalesce(each.value.subnet_ids, var.subnet_ids)
6+
vpc_id = coalesce(each.value.runner_config.vpc_id, var.vpc_id)
7+
subnet_ids = coalesce(each.value.runner_config.subnet_ids, var.subnet_ids)
88
prefix = "${var.prefix}-${each.key}"
99
tags = merge(local.tags, {
1010
"ghr:environment" = "${var.prefix}-${each.key}"

0 commit comments

Comments
 (0)