infrastructure/terraform/context.tf
Jake Howard bbfe85b2c8
Update vultr provider
This was a pretty breaking change which required re-importing most of its state
2021-03-23 21:22:31 +00:00

9 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"
}