mirror of
https://github.com/RealOrangeOne/infrastructure.git
synced 2026-07-30 14:30:09 +00:00
8 lines
196 B
HCL
8 lines
196 B
HCL
resource "local_file" "hosts" {
|
|
content = yamlencode({
|
|
hosts : {
|
|
casey_ip : vultr_instance.casey.main_ip
|
|
}
|
|
})
|
|
filename = "${path.module}/../ansible/group_vars/all/hosts.yml"
|
|
}
|