9 lines
318 B
HCL
9 lines
318 B
HCL
output "node_addresses" {
|
|
description = "Addresses passed to Ansible."
|
|
value = { for name, node in local.nodes : name => node.address }
|
|
}
|
|
|
|
output "ansible_inventory" {
|
|
description = "Generated inventory consumed by scripts/provision/bootstrap.sh."
|
|
value = local_sensitive_file.inventory.filename
|
|
}
|