Skip to content

Commit a4aef98

Browse files
authored
fix: Fixed coalescelist() with subnets in fargate module (#1576)
1 parent a9b8455 commit a4aef98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fargate.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module "fargate" {
88
permissions_boundary = var.permissions_boundary
99
iam_path = var.iam_path
1010
iam_policy_arn_prefix = local.policy_arn_prefix
11-
subnets = coalescelist(var.fargate_subnets, var.subnets)
11+
subnets = coalescelist(var.fargate_subnets, var.subnets, [""])
1212
tags = var.tags
1313

1414
# Hack to ensure ordering of resource creation.

0 commit comments

Comments
 (0)