mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-05 07:54:00 -07:00
Normalize more booleans. (#5247)
This commit is contained in:
parent
570445adc4
commit
015566fb06
170 changed files with 465 additions and 465 deletions
|
@ -20,22 +20,22 @@ options:
|
|||
api_key:
|
||||
description:
|
||||
- "API key for authentication, must be obtained via the netcup CCP (U(https://ccp.netcup.net))."
|
||||
required: True
|
||||
required: true
|
||||
type: str
|
||||
api_password:
|
||||
description:
|
||||
- "API password for authentication, must be obtained via the netcup CCP (U(https://ccp.netcup.net))."
|
||||
required: True
|
||||
required: true
|
||||
type: str
|
||||
customer_id:
|
||||
description:
|
||||
- Netcup customer id.
|
||||
required: True
|
||||
required: true
|
||||
type: int
|
||||
domain:
|
||||
description:
|
||||
- Domainname the records should be added / removed.
|
||||
required: True
|
||||
required: true
|
||||
type: str
|
||||
record:
|
||||
description:
|
||||
|
@ -47,7 +47,7 @@ options:
|
|||
description:
|
||||
- Record type.
|
||||
choices: ['A', 'AAAA', 'MX', 'CNAME', 'CAA', 'SRV', 'TXT', 'TLSA', 'NS', 'DS']
|
||||
required: True
|
||||
required: true
|
||||
type: str
|
||||
value:
|
||||
description:
|
||||
|
@ -56,19 +56,19 @@ options:
|
|||
type: str
|
||||
solo:
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
description:
|
||||
- Whether the record should be the only one for that record type and record name. Only use with I(state=present).
|
||||
- This will delete all other records with the same record name and type.
|
||||
priority:
|
||||
description:
|
||||
- Record priority. Required for I(type=MX).
|
||||
required: False
|
||||
required: false
|
||||
type: int
|
||||
state:
|
||||
description:
|
||||
- Whether the record should exist or not.
|
||||
required: False
|
||||
required: false
|
||||
default: present
|
||||
choices: [ 'present', 'absent' ]
|
||||
type: str
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue