run terraform FMT for readability

This commit is contained in:
ArchiFleKs
2018-01-05 12:09:04 +01:00
parent 6eb6e806e7
commit 74fd975b57
10 changed files with 358 additions and 357 deletions

View File

@@ -1,4 +1,3 @@
resource "openstack_networking_router_v2" "k8s" {
name = "${var.cluster_name}-router"
admin_state_up = "true"

View File

@@ -1,7 +1,7 @@
output "router_id" {
value = "${openstack_networking_router_interface_v2.k8s.id}"
value = "${openstack_networking_router_interface_v2.k8s.id}"
}
output "network_id" {
value = "${openstack_networking_subnet_v2.k8s.id}"
value = "${openstack_networking_subnet_v2.k8s.id}"
}

View File

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