feat: Allow the overwrite of subnets for Fargate profiles (#1117)

NOTES: The EKS cluster can be provisioned with both private and public subnets. But Fargate only accepts private ones. This new variable allows to override the subnets to explicitly pass the private subnets to Fargate and work around that issue.
This commit is contained in:
Jonas Chevalier
2021-01-28 21:46:53 +00:00
committed by GitHub
parent 65777d0a37
commit 576aa293f5
3 changed files with 5 additions and 1 deletions

View File

@@ -100,6 +100,9 @@ module "eks" {
# GithubOrg = "terraform-aws-modules"
# }
# using specific subnets instead of all the ones configured in eks
# subnets = ["subnet-0ca3e3d1234a56c78"]
tags = {
Owner = "test"
}