Fix the terraform fmt of configs
This commit is contained in:
parent
f04411377f
commit
e19517d3df
|
@ -78,4 +78,3 @@ resource "matchbox_profile" "worker" {
|
|||
name = "worker"
|
||||
container_linux_config = "${file("${path.module}/cl/worker.yaml.tmpl")}"
|
||||
}
|
||||
|
||||
|
|
|
@ -94,4 +94,3 @@ resource "null_resource" "bootkube-start" {
|
|||
]
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ resource "digitalocean_droplet" "controllers" {
|
|||
ssh_keys = "${var.ssh_fingerprints}"
|
||||
|
||||
tags = [
|
||||
"${digitalocean_tag.controllers.id}"
|
||||
"${digitalocean_tag.controllers.id}",
|
||||
]
|
||||
}
|
||||
|
||||
|
|
|
@ -50,4 +50,3 @@ resource "digitalocean_firewall" "rules" {
|
|||
},
|
||||
]
|
||||
}
|
||||
|
||||
|
|
|
@ -22,4 +22,3 @@ resource "null_resource" "bootkube-start" {
|
|||
]
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ resource "digitalocean_droplet" "workers" {
|
|||
ssh_keys = "${var.ssh_fingerprints}"
|
||||
|
||||
tags = [
|
||||
"${digitalocean_tag.workers.id}"
|
||||
"${digitalocean_tag.workers.id}",
|
||||
]
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue