Ansible DNS optimizations

This commit is contained in:
2025-03-29 11:33:06 -05:00
parent 252581a74c
commit 28fc82623a
4 changed files with 54 additions and 48 deletions

View File

@@ -5,7 +5,7 @@ resource "freeipa_dns_record" "{{ inventory_hostname }}" {
name = "{{ inventory_hostname }}"
type = "A"
records = [
"{{ hostvars[inventory_hostname].ip_address }}",
"{{ ip_address }}",
]
ttl = 60
}