Disable usage of default security group (#4533)

This commit is contained in:
Maxime Guyot
2019-04-17 11:10:03 +02:00
committed by Kubernetes Prow Robot
parent d83181a2be
commit 1cf76a10db
4 changed files with 33 additions and 18 deletions

View File

@@ -151,6 +151,12 @@ variable "k8s_allowed_remote_ips" {
default = []
}
variable "k8s_allowed_egress_ips" {
description = "An array of CIDRs allowed for egress traffic"
type = "list"
default = ["0.0.0.0/0"]
}
variable "worker_allowed_ports" {
type = "list"