adds ability to have hosts with no floating ips on terraform/openstack

This commit is contained in:
Pablo Moreno
2016-11-05 09:12:40 +00:00
parent d4467ab1c6
commit a6bc284abd
5 changed files with 107 additions and 27 deletions
+8
View File
@@ -6,10 +6,18 @@ variable "number_of_k8s_masters" {
default = 2
}
variable "number_of_k8s_masters_no_floating_ip" {
default = 2
}
variable "number_of_k8s_nodes" {
default = 1
}
variable "number_of_k8s_nodes_no_floating_ip" {
default = 1
}
variable "public_key_path" {
description = "The path of the ssh pub key"
default = "~/.ssh/id_rsa.pub"