While I've confirmed the record is successfully created in Infoblox (and is correct in the id field), The ip_addr field is blank in the tfstate file. This causes the record to be updated every time terraform apply is run.
I only see this issue when ip_addr is an IPv6 address. IPv4 addresses work as expected.
Creating a simple infoblox_ptr_record like:
resource "infoblox_ptr_record" "test_ptr_v6" { ptrdname = "testptr_v6.example.com" ip_addr = "2001:db8::10" }
results in a tfstate entry like:
While I've confirmed the record is successfully created in Infoblox (and is correct in the id field), The ip_addr field is blank in the tfstate file. This causes the record to be updated every time terraform apply is run.
I only see this issue when ip_addr is an IPv6 address. IPv4 addresses work as expected.