Canonicalize value for AAAA records

This ensures that any AAAA record value provided by the user is converted
into a canonical and correctly-shortened form before any other processing
takes place. In particular, this fixes an issue where a non-canonical
address is not found by the create-or-update logic, causing the API to
return an error saying that the record already exists.
This commit is contained in:
Charles Ulrich 2025-04-02 22:00:46 -04:00
parent 70b5e362f9
commit 9a92cc6340

View file

@ -422,6 +422,7 @@ record:
sample: sample.com
"""
from ipaddress import IPv6Address
import json
from ansible.module_utils.basic import AnsibleModule, env_fallback
@ -477,7 +478,7 @@ class CloudflareAPI(object):
self.value = self.value.rstrip('.').lower()
if (self.type == 'AAAA') and (self.value is not None):
self.value = self.value.lower()
self.value = str(IPv6Address(self.value))
if (self.type == 'SRV'):
if (self.proto is not None) and (not self.proto.startswith('_')):