mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-06 10:40:32 -07:00
Fixed validations in a couple of modules (#2268)
* fixed udm_dns_zone * fixed udm_dns_record * removed lines from ignore files * added changelog fragment * moved the list elements fix to minor_changes
This commit is contained in:
parent
d5c26b6f70
commit
fbbd8ecd6f
7 changed files with 32 additions and 31 deletions
4
changelogs/fragments/2268-validation-univetion.yml
Normal file
4
changelogs/fragments/2268-validation-univetion.yml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
bugfixes:
|
||||||
|
- udm_dns_record - fixed default value of parameter ``data`` to match its type (https://github.com/ansible-collections/community.general/pull/2268).
|
||||||
|
minor_changes:
|
||||||
|
- udm_dns_zone - elements of list parameters ``nameserver``, ``interfaces``, and ``mx`` are now validated (https://github.com/ansible-collections/community.general/pull/2268).
|
|
@ -23,21 +23,24 @@ requirements:
|
||||||
- Univention
|
- Univention
|
||||||
options:
|
options:
|
||||||
state:
|
state:
|
||||||
required: false
|
type: str
|
||||||
default: "present"
|
default: "present"
|
||||||
choices: [ present, absent ]
|
choices: [ present, absent ]
|
||||||
description:
|
description:
|
||||||
- Whether the dns record is present or not.
|
- Whether the dns record is present or not.
|
||||||
name:
|
name:
|
||||||
|
type: str
|
||||||
required: true
|
required: true
|
||||||
description:
|
description:
|
||||||
- "Name of the record, this is also the DNS record. E.g. www for
|
- "Name of the record, this is also the DNS record. E.g. www for
|
||||||
www.example.com."
|
www.example.com."
|
||||||
zone:
|
zone:
|
||||||
|
type: str
|
||||||
required: true
|
required: true
|
||||||
description:
|
description:
|
||||||
- Corresponding DNS zone for this record, e.g. example.com.
|
- Corresponding DNS zone for this record, e.g. example.com.
|
||||||
type:
|
type:
|
||||||
|
type: str
|
||||||
required: true
|
required: true
|
||||||
description:
|
description:
|
||||||
- "Define the record type. C(host_record) is a A or AAAA record,
|
- "Define the record type. C(host_record) is a A or AAAA record,
|
||||||
|
@ -45,8 +48,8 @@ options:
|
||||||
is a SRV record and C(txt_record) is a TXT record."
|
is a SRV record and C(txt_record) is a TXT record."
|
||||||
- "The available choices are: C(host_record), C(alias), C(ptr_record), C(srv_record), C(txt_record)."
|
- "The available choices are: C(host_record), C(alias), C(ptr_record), C(srv_record), C(txt_record)."
|
||||||
data:
|
data:
|
||||||
required: false
|
type: dict
|
||||||
default: []
|
default: {}
|
||||||
description:
|
description:
|
||||||
- "Additional data for this record, e.g. ['a': '192.0.2.1'].
|
- "Additional data for this record, e.g. ['a': '192.0.2.1'].
|
||||||
Required if C(state=present)."
|
Required if C(state=present)."
|
||||||
|
@ -98,7 +101,7 @@ def main():
|
||||||
type='str'),
|
type='str'),
|
||||||
name=dict(required=True,
|
name=dict(required=True,
|
||||||
type='str'),
|
type='str'),
|
||||||
data=dict(default=[],
|
data=dict(default={},
|
||||||
type='dict'),
|
type='dict'),
|
||||||
state=dict(default='present',
|
state=dict(default='present',
|
||||||
choices=['present', 'absent'],
|
choices=['present', 'absent'],
|
||||||
|
|
|
@ -22,58 +22,64 @@ requirements:
|
||||||
- Python >= 2.6
|
- Python >= 2.6
|
||||||
options:
|
options:
|
||||||
state:
|
state:
|
||||||
required: false
|
type: str
|
||||||
default: "present"
|
default: "present"
|
||||||
choices: [ present, absent ]
|
choices: [ present, absent ]
|
||||||
description:
|
description:
|
||||||
- Whether the dns zone is present or not.
|
- Whether the dns zone is present or not.
|
||||||
type:
|
type:
|
||||||
|
type: str
|
||||||
required: true
|
required: true
|
||||||
description:
|
description:
|
||||||
- Define if the zone is a forward or reverse DNS zone.
|
- Define if the zone is a forward or reverse DNS zone.
|
||||||
- "The available choices are: C(forward_zone), C(reverse_zone)."
|
- "The available choices are: C(forward_zone), C(reverse_zone)."
|
||||||
zone:
|
zone:
|
||||||
|
type: str
|
||||||
required: true
|
required: true
|
||||||
description:
|
description:
|
||||||
- DNS zone name, e.g. C(example.com).
|
- DNS zone name, e.g. C(example.com).
|
||||||
|
aliases: [name]
|
||||||
nameserver:
|
nameserver:
|
||||||
required: false
|
type: list
|
||||||
|
elements: str
|
||||||
description:
|
description:
|
||||||
- List of appropriate name servers. Required if C(state=present).
|
- List of appropriate name servers. Required if C(state=present).
|
||||||
interfaces:
|
interfaces:
|
||||||
required: false
|
type: list
|
||||||
|
elements: str
|
||||||
description:
|
description:
|
||||||
- List of interface IP addresses, on which the server should
|
- List of interface IP addresses, on which the server should
|
||||||
response this zone. Required if C(state=present).
|
response this zone. Required if C(state=present).
|
||||||
|
|
||||||
refresh:
|
refresh:
|
||||||
required: false
|
type: int
|
||||||
default: 3600
|
default: 3600
|
||||||
description:
|
description:
|
||||||
- Interval before the zone should be refreshed.
|
- Interval before the zone should be refreshed.
|
||||||
retry:
|
retry:
|
||||||
required: false
|
type: int
|
||||||
default: 1800
|
default: 1800
|
||||||
description:
|
description:
|
||||||
- Interval that should elapse before a failed refresh should be retried.
|
- Interval that should elapse before a failed refresh should be retried.
|
||||||
expire:
|
expire:
|
||||||
required: false
|
type: int
|
||||||
default: 604800
|
default: 604800
|
||||||
description:
|
description:
|
||||||
- Specifies the upper limit on the time interval that can elapse before the zone is no longer authoritative.
|
- Specifies the upper limit on the time interval that can elapse before the zone is no longer authoritative.
|
||||||
ttl:
|
ttl:
|
||||||
required: false
|
type: int
|
||||||
default: 600
|
default: 600
|
||||||
description:
|
description:
|
||||||
- Minimum TTL field that should be exported with any RR from this zone.
|
- Minimum TTL field that should be exported with any RR from this zone.
|
||||||
|
|
||||||
contact:
|
contact:
|
||||||
required: false
|
type: str
|
||||||
default: ''
|
default: ''
|
||||||
description:
|
description:
|
||||||
- Contact person in the SOA record.
|
- Contact person in the SOA record.
|
||||||
mx:
|
mx:
|
||||||
required: false
|
type: list
|
||||||
|
elements: str
|
||||||
default: []
|
default: []
|
||||||
description:
|
description:
|
||||||
- List of MX servers. (Must declared as A or AAAA records).
|
- List of MX servers. (Must declared as A or AAAA records).
|
||||||
|
@ -128,9 +134,11 @@ def main():
|
||||||
aliases=['name'],
|
aliases=['name'],
|
||||||
type='str'),
|
type='str'),
|
||||||
nameserver=dict(default=[],
|
nameserver=dict(default=[],
|
||||||
type='list'),
|
type='list',
|
||||||
|
elements='str'),
|
||||||
interfaces=dict(default=[],
|
interfaces=dict(default=[],
|
||||||
type='list'),
|
type='list',
|
||||||
|
elements='str'),
|
||||||
refresh=dict(default=3600,
|
refresh=dict(default=3600,
|
||||||
type='int'),
|
type='int'),
|
||||||
retry=dict(default=1800,
|
retry=dict(default=1800,
|
||||||
|
@ -142,7 +150,8 @@ def main():
|
||||||
contact=dict(default='',
|
contact=dict(default='',
|
||||||
type='str'),
|
type='str'),
|
||||||
mx=dict(default=[],
|
mx=dict(default=[],
|
||||||
type='list'),
|
type='list',
|
||||||
|
elements='str'),
|
||||||
state=dict(default='present',
|
state=dict(default='present',
|
||||||
choices=['present', 'absent'],
|
choices=['present', 'absent'],
|
||||||
type='str')
|
type='str')
|
||||||
|
|
|
@ -28,10 +28,6 @@ plugins/modules/cloud/smartos/vmadm.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/univention/udm_dns_record.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/univention/udm_dns_zone.py validate-modules:parameter-list-no-elements
|
|
||||||
plugins/modules/cloud/univention/udm_dns_zone.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/univention/udm_dns_zone.py validate-modules:undocumented-parameter
|
|
||||||
plugins/modules/cloud/univention/udm_share.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/univention/udm_share.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/univention/udm_user.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/univention/udm_user.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/clustering/consul/consul.py validate-modules:doc-missing-type
|
plugins/modules/clustering/consul/consul.py validate-modules:doc-missing-type
|
||||||
|
|
|
@ -27,10 +27,6 @@ plugins/modules/cloud/smartos/vmadm.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/univention/udm_dns_record.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/univention/udm_dns_zone.py validate-modules:parameter-list-no-elements
|
|
||||||
plugins/modules/cloud/univention/udm_dns_zone.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/univention/udm_dns_zone.py validate-modules:undocumented-parameter
|
|
||||||
plugins/modules/cloud/univention/udm_share.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/univention/udm_share.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/univention/udm_user.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/univention/udm_user.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/clustering/consul/consul.py validate-modules:doc-missing-type
|
plugins/modules/clustering/consul/consul.py validate-modules:doc-missing-type
|
||||||
|
|
|
@ -27,10 +27,6 @@ plugins/modules/cloud/smartos/vmadm.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/univention/udm_dns_record.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/univention/udm_dns_zone.py validate-modules:parameter-list-no-elements
|
|
||||||
plugins/modules/cloud/univention/udm_dns_zone.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/univention/udm_dns_zone.py validate-modules:undocumented-parameter
|
|
||||||
plugins/modules/cloud/univention/udm_share.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/univention/udm_share.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/cloud/univention/udm_user.py validate-modules:parameter-list-no-elements
|
plugins/modules/cloud/univention/udm_user.py validate-modules:parameter-list-no-elements
|
||||||
plugins/modules/clustering/consul/consul.py validate-modules:doc-missing-type
|
plugins/modules/clustering/consul/consul.py validate-modules:doc-missing-type
|
||||||
|
|
|
@ -23,9 +23,6 @@ plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-type-not-in-do
|
||||||
plugins/modules/cloud/smartos/vmadm.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/smartos/vmadm.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
|
||||||
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter
|
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/cloud/univention/udm_dns_record.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/univention/udm_dns_zone.py validate-modules:parameter-type-not-in-doc
|
|
||||||
plugins/modules/cloud/univention/udm_dns_zone.py validate-modules:undocumented-parameter
|
|
||||||
plugins/modules/clustering/consul/consul.py validate-modules:doc-missing-type
|
plugins/modules/clustering/consul/consul.py validate-modules:doc-missing-type
|
||||||
plugins/modules/clustering/consul/consul.py validate-modules:undocumented-parameter
|
plugins/modules/clustering/consul/consul.py validate-modules:undocumented-parameter
|
||||||
plugins/modules/packaging/language/composer.py validate-modules:parameter-invalid
|
plugins/modules/packaging/language/composer.py validate-modules:parameter-invalid
|
||||||
|
|
Loading…
Add table
Reference in a new issue