mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-02-04 07:51:50 +00:00
cloudflare_dns: also allow 128 as a value for flag (#11377)
* Also allow 128 as a value for flag.
* Forgot to add changelog fragment.
(cherry picked from commit c00fb4fb5c)
This commit is contained in:
parent
5807791c80
commit
91ba894643
2 changed files with 7 additions and 2 deletions
2
changelogs/fragments/11377-cloudflare_dns-caa.yml
Normal file
2
changelogs/fragments/11377-cloudflare_dns-caa.yml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- "cloudflare_dns - also allow ``flag=128`` for CAA records (https://github.com/ansible-collections/community.general/issues/11355, https://github.com/ansible-collections/community.general/pull/11377)."
|
||||
|
|
@ -61,9 +61,12 @@ options:
|
|||
flag:
|
||||
description:
|
||||
- Issuer Critical Flag.
|
||||
- Should be set either to V(0) for not critical, or to V(128) for critical.
|
||||
- Before community.general 11.4.4, only V(0) and V(1) were valid options.
|
||||
The value V(1) is still available for backwards-compatibility reasons.
|
||||
- Required for O(type=CAA) when O(state=present).
|
||||
type: int
|
||||
choices: [0, 1]
|
||||
choices: [0, 1, 128]
|
||||
version_added: 8.0.0
|
||||
tag:
|
||||
description:
|
||||
|
|
@ -907,7 +910,7 @@ def main():
|
|||
hash_type=dict(type='int', choices=[1, 2]),
|
||||
key_tag=dict(type='int', no_log=False),
|
||||
port=dict(type='int'),
|
||||
flag=dict(type='int', choices=[0, 1]),
|
||||
flag=dict(type='int', choices=[0, 1, 128]),
|
||||
tag=dict(type='str', choices=['issue', 'issuewild', 'iodef']),
|
||||
tags=dict(type='list', elements='str'),
|
||||
priority=dict(type='int', default=1),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue