Files
Ansible_playbook/outputs.tf
Justine Pelletreau bbaddef217 Added outputs
2026-02-23 18:29:16 +01:00

15 lines
396 B
HCL

output "playbook_return" {
description = "stdout of the playbook"
value = ansible_playbook.playbook.ansible_playbook_stdout
}
output "playbook_path" {
description = "path of the playbook"
value = ansible_playbook.playbook.playbook
}
output "host_address" {
description = "IP address or hostname used to connect to the host."
value = "ansible_host.host.name"
}