This commit is contained in:
Charles Ulrich 2025-04-02 22:23:09 -04:00 committed by GitHub
commit c5851ce63f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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