mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-22 17:39:05 +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
|
permissions_boundary = var.permissions_boundary
|
||||||
iam_path = var.iam_path
|
iam_path = var.iam_path
|
||||||
iam_policy_arn_prefix = local.policy_arn_prefix
|
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
|
tags = var.tags
|
||||||
|
|
||||||
# Hack to ensure ordering of resource creation.
|
# Hack to ensure ordering of resource creation.
|
||||||
|
|||||||
Reference in New Issue
Block a user