mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-18 23:43:49 +01:00
feat: Allow to override cluster and workers egress CIDRs (#1237)
This commit is contained in:
12
variables.tf
12
variables.tf
@@ -375,3 +375,15 @@ variable "cluster_service_ipv4_cidr" {
|
||||
type = string
|
||||
default = null
|
||||
}
|
||||
|
||||
variable "cluster_egress_cidrs" {
|
||||
description = "List of CIDR blocks that are permitted for cluster egress traffic."
|
||||
type = list(string)
|
||||
default = ["0.0.0.0/0"]
|
||||
}
|
||||
|
||||
variable "workers_egress_cidrs" {
|
||||
description = "List of CIDR blocks that are permitted for workers egress traffic."
|
||||
type = list(string)
|
||||
default = ["0.0.0.0/0"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user