mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-05 02:00:30 -07:00
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:
parent
70b5e362f9
commit
9a92cc6340
1 changed files with 2 additions and 1 deletions
|
@ -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('_')):
|
||||
|
|
Loading…
Add table
Reference in a new issue