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

@@ -3,8 +3,14 @@ variable "cluster_name" {
}
variable "az_list" {
description = "List of Availability Zones available in your OpenStack cluster"
type = "list"
description = "List of Availability Zones to use for masters in your OpenStack cluster"
type = list(string)
default = ["nova"]
}
variable "az_list_node" {
description = "List of Availability Zones to use for nodes in your OpenStack cluster"
type = list(string)
default = ["nova"]
}
@@ -213,4 +219,4 @@ variable "use_access_ip" {
variable "use_server_groups" {
default = false
}
}