Fix the terraform fmt of configs

This commit is contained in:
Dalton Hubble 2017-08-12 18:25:05 -07:00
parent f04411377f
commit e19517d3df
8 changed files with 52 additions and 56 deletions

View File

@ -78,4 +78,3 @@ resource "matchbox_profile" "worker" {
name = "worker" name = "worker"
container_linux_config = "${file("${path.module}/cl/worker.yaml.tmpl")}" container_linux_config = "${file("${path.module}/cl/worker.yaml.tmpl")}"
} }

View File

@ -94,4 +94,3 @@ resource "null_resource" "bootkube-start" {
] ]
} }
} }

View File

@ -29,7 +29,7 @@ resource "digitalocean_droplet" "controllers" {
ssh_keys = "${var.ssh_fingerprints}" ssh_keys = "${var.ssh_fingerprints}"
tags = [ tags = [
"${digitalocean_tag.controllers.id}" "${digitalocean_tag.controllers.id}",
] ]
} }

View File

@ -50,4 +50,3 @@ resource "digitalocean_firewall" "rules" {
}, },
] ]
} }

View File

@ -22,4 +22,3 @@ resource "null_resource" "bootkube-start" {
] ]
} }
} }

View File

@ -29,7 +29,7 @@ resource "digitalocean_droplet" "workers" {
ssh_keys = "${var.ssh_fingerprints}" ssh_keys = "${var.ssh_fingerprints}"
tags = [ tags = [
"${digitalocean_tag.workers.id}" "${digitalocean_tag.workers.id}",
] ]
} }