c12s-kubespray/contrib/terraform/openstack/modules/compute/variables.tf

80 lines
1.2 KiB
Terraform
Raw Normal View History

2018-01-05 11:09:04 +00:00
variable "cluster_name" {}
variable "az_list" {
type = "list"
}
2018-01-05 11:09:04 +00:00
variable "number_of_k8s_masters" {}
2018-01-05 11:09:04 +00:00
variable "number_of_k8s_masters_no_etcd" {}
2018-01-05 11:09:04 +00:00
variable "number_of_etcd" {}
2018-01-05 11:09:04 +00:00
variable "number_of_k8s_masters_no_floating_ip" {}
2018-01-05 11:09:04 +00:00
variable "number_of_k8s_masters_no_floating_ip_no_etcd" {}
2018-01-05 11:09:04 +00:00
variable "number_of_k8s_nodes" {}
2018-01-05 11:09:04 +00:00
variable "number_of_k8s_nodes_no_floating_ip" {}
2018-01-05 11:09:04 +00:00
variable "number_of_bastions" {}
2018-01-05 11:09:04 +00:00
variable "number_of_gfs_nodes_no_floating_ip" {}
2018-01-05 11:09:04 +00:00
variable "gfs_volume_size_in_gb" {}
2018-01-05 11:09:04 +00:00
variable "public_key_path" {}
2018-01-05 11:09:04 +00:00
variable "image" {}
2018-01-05 11:09:04 +00:00
variable "image_gfs" {}
2018-01-05 11:09:04 +00:00
variable "ssh_user" {}
2018-01-05 11:09:04 +00:00
variable "ssh_user_gfs" {}
2018-01-05 11:09:04 +00:00
variable "flavor_k8s_master" {}
2018-01-05 11:09:04 +00:00
variable "flavor_k8s_node" {}
2018-01-05 11:09:04 +00:00
variable "flavor_etcd" {}
2018-01-05 11:09:04 +00:00
variable "flavor_gfs_node" {}
2018-01-05 11:09:04 +00:00
variable "network_name" {}
2018-01-05 11:09:04 +00:00
variable "flavor_bastion" {}
variable "network_id" {
default = ""
}
variable "k8s_master_fips" {
type = "list"
}
variable "k8s_node_fips" {
type = "list"
}
variable "bastion_fips" {
type = "list"
}
variable "bastion_allowed_remote_ips" {
type = "list"
}
variable "supplementary_master_groups" {
default = ""
}
variable "supplementary_node_groups" {
default = ""
}
variable "worker_allowed_ports" {
type = "list"
}