We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 090c116 commit bd4831fCopy full SHA for bd4831f
modules/multi-runner/runners.tf
@@ -3,8 +3,8 @@ module "runners" {
3
for_each = local.runner_config
4
aws_region = var.aws_region
5
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)
+ vpc_id = coalesce(each.value.runner_config.vpc_id, var.vpc_id)
+ subnet_ids = coalesce(each.value.runner_config.subnet_ids, var.subnet_ids)
8
prefix = "${var.prefix}-${each.key}"
9
tags = merge(local.tags, {
10
"ghr:environment" = "${var.prefix}-${each.key}"
0 commit comments