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

View File

@@ -87,6 +87,12 @@ variable "map_users" {
default = []
}
variable "fargate_subnets" {
description = "A list of subnets to place fargate workers within (if different from subnets)."
type = list(string)
default = []
}
variable "subnets" {
description = "A list of subnets to place the EKS cluster and workers within."
type = list(string)