add az_list_node variable to specify different AZs for kubelets (#5413)

* rebase and add az_list_node variable to specify different AZs for kubelets

* fix missing variable name change
This commit is contained in:
rptaylor
2020-02-18 04:29:27 -08:00
committed by GitHub
parent 12bc634ec3
commit 277b347604
4 changed files with 20 additions and 9 deletions

View File

@@ -1,7 +1,11 @@
variable "cluster_name" {}
variable "az_list" {
type = "list"
type = list(string)
}
variable "az_list_node" {
type = list(string)
}
variable "number_of_k8s_masters" {}
@@ -110,4 +114,4 @@ variable "use_access_ip" {}
variable "use_server_groups" {
type = bool
}
}