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