Skip to main content

Windows DNS Reverse Zone 1 Text - Config Module

Below is an example of YAML to modify
"windows_dns::zones":
  '#{subnet.inAddrArpa}':
    ensure: "present"
"windows_dns::records":
  '#{int in subnet.nics}':
    '#{int.ip}_PTR':
      ensure: 'present'
      type: 'PTR'
      node: '#{int.ip}'
      value: '#{int.vm.name}.#{domain.name}'