feat: Allow to override cluster and workers egress CIDRs (#1237)

This commit is contained in:
Matt Dainty
2021-04-20 10:13:14 +01:00
committed by GitHub
parent 81bc7a2dd1
commit 2a78efd082
4 changed files with 16 additions and 2 deletions

View File

@@ -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"]
}