Update OpenStack Terraform: Modules, Bastions, and New Floating IP config (#1958)

* Adding bastion and private network provisioning for openstack terraform

* Remove usage of floating-ip property

* Combine openstack instances + floating ips

* Fix relating floating IPs to hosts for openstack builds

* Tighten up security groups

Allow ssh into all instances with floating IP

* Add the gluster hosts to the no-floating group

* Break terraform into modules

* Update README and var descriptions to match current config

* Remove volume property in gluster compute def

* Include cluster name in internal network and router names

* Make dns_nameservers a variable
This commit is contained in:
BenGalewsky
2017-12-05 06:48:47 -06:00
committed by Matthew Mosesohn
parent 6ade7c0a8d
commit 591ae700ce
12 changed files with 760 additions and 374 deletions

View File

@@ -0,0 +1,13 @@
variable "external_net" {
}
variable "network_name" {
}
variable "cluster_name" {
}
variable "dns_nameservers"{
type = "list"
}