Add option to set different server group policy for etcd, node, and master server (#8046)

This commit is contained in:
Olle Larsson
2021-11-22 11:53:09 +01:00
committed by GitHub
parent e35a87e3eb
commit fe0810aff9
5 changed files with 44 additions and 21 deletions

View File

@@ -124,8 +124,16 @@ variable "worker_allowed_ports" {
variable "use_access_ip" {}
variable "use_server_groups" {
type = bool
variable "master_server_group_policy" {
type = string
}
variable "node_server_group_policy" {
type = string
}
variable "etcd_server_group_policy" {
type = string
}
variable "extra_sec_groups" {