mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-14 15:53:59 +01:00
fix: Fixed coalescelist() with subnets in fargate module (#1576)
This commit is contained in:
@@ -8,7 +8,7 @@ module "fargate" {
|
||||
permissions_boundary = var.permissions_boundary
|
||||
iam_path = var.iam_path
|
||||
iam_policy_arn_prefix = local.policy_arn_prefix
|
||||
subnets = coalescelist(var.fargate_subnets, var.subnets)
|
||||
subnets = coalescelist(var.fargate_subnets, var.subnets, [""])
|
||||
tags = var.tags
|
||||
|
||||
# Hack to ensure ordering of resource creation.
|
||||
|
||||
Reference in New Issue
Block a user