1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

feat: Added ability to pass different subnets for fargate and the cluster (#1527)

This commit is contained in:
DayneD89
2021-09-06 14:15:38 +01:00
committed by GitHub
parent 7f8232c570
commit 4a7678d372
4 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -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 = var.subnets
subnets = coalescelist(var.fargate_subnets, var.subnets)
tags = var.tags
# Hack to ensure ordering of resource creation.