Jake Howard
e86ed81102
It's been replaced by prometheus running internally, and uptimerobot checking.
10 lines
299 B
HCL
10 lines
299 B
HCL
resource "local_file" "hosts" {
|
|
content = yamlencode({
|
|
hosts : {
|
|
casey_ip : linode_instance.casey.ip_address,
|
|
walker_ip : vultr_instance.walker.main_ip,
|
|
grimes_ip : vultr_instance.grimes.main_ip,
|
|
}
|
|
})
|
|
filename = "${path.module}/../ansible/group_vars/all/hosts.yml"
|
|
}
|