mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 20:01:25 -07:00
Multiple doc fix 3 (#5238)
* multiple modules 2: fixed markups in doc * multiple modules 3: fixed markups in doc * fixed yaml * Update plugins/modules/cloud/misc/proxmox_template.py Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
999fc475a2
commit
88c3865cdb
11 changed files with 64 additions and 67 deletions
|
@ -44,39 +44,39 @@ options:
|
|||
algorithm:
|
||||
description:
|
||||
- Algorithm number.
|
||||
- Required for C(type=DS) and C(type=SSHFP) when C(state=present).
|
||||
- Required for I(type=DS) and I(type=SSHFP) when I(state=present).
|
||||
type: int
|
||||
cert_usage:
|
||||
description:
|
||||
- Certificate usage number.
|
||||
- Required for C(type=TLSA) when C(state=present).
|
||||
- Required for I(type=TLSA) when I(state=present).
|
||||
type: int
|
||||
choices: [ 0, 1, 2, 3 ]
|
||||
hash_type:
|
||||
description:
|
||||
- Hash type number.
|
||||
- Required for C(type=DS), C(type=SSHFP) and C(type=TLSA) when C(state=present).
|
||||
- Required for I(type=DS), I(type=SSHFP) and I(type=TLSA) when I(state=present).
|
||||
type: int
|
||||
choices: [ 1, 2 ]
|
||||
key_tag:
|
||||
description:
|
||||
- DNSSEC key tag.
|
||||
- Needed for C(type=DS) when C(state=present).
|
||||
- Needed for I(type=DS) when I(state=present).
|
||||
type: int
|
||||
port:
|
||||
description:
|
||||
- Service port.
|
||||
- Required for C(type=SRV) and C(type=TLSA).
|
||||
- Required for I(type=SRV) and I(type=TLSA).
|
||||
type: int
|
||||
priority:
|
||||
description:
|
||||
- Record priority.
|
||||
- Required for C(type=MX) and C(type=SRV)
|
||||
- Required for I(type=MX) and I(type=SRV)
|
||||
default: 1
|
||||
type: int
|
||||
proto:
|
||||
description:
|
||||
- Service protocol. Required for C(type=SRV) and C(type=TLSA).
|
||||
- Service protocol. Required for I(type=SRV) and I(type=TLSA).
|
||||
- Common values are TCP and UDP.
|
||||
- Before Ansible 2.6 only TCP and UDP were available.
|
||||
type: str
|
||||
|
@ -88,7 +88,7 @@ options:
|
|||
record:
|
||||
description:
|
||||
- Record to add.
|
||||
- Required if C(state=present).
|
||||
- Required if I(state=present).
|
||||
- Default is C(@) (e.g. the zone name).
|
||||
type: str
|
||||
default: '@'
|
||||
|
@ -96,7 +96,7 @@ options:
|
|||
selector:
|
||||
description:
|
||||
- Selector number.
|
||||
- Required for C(type=TLSA) when C(state=present).
|
||||
- Required for I(type=TLSA) when I(state=present).
|
||||
choices: [ 0, 1 ]
|
||||
type: int
|
||||
service:
|
||||
|
@ -107,7 +107,7 @@ options:
|
|||
solo:
|
||||
description:
|
||||
- Whether the record should be the only one for that record type and record name.
|
||||
- Only use with C(state=present).
|
||||
- Only use with I(state=present).
|
||||
- This will delete all other records with the same record name and type.
|
||||
type: bool
|
||||
state:
|
||||
|
@ -129,20 +129,20 @@ options:
|
|||
default: 1
|
||||
type:
|
||||
description:
|
||||
- The type of DNS record to create. Required if C(state=present).
|
||||
- C(type=DS), C(type=SSHFP) and C(type=TLSA) added in Ansible 2.7.
|
||||
- The type of DNS record to create. Required if I(state=present).
|
||||
- I(type=DS), I(type=SSHFP) and I(type=TLSA) added in Ansible 2.7.
|
||||
type: str
|
||||
choices: [ A, AAAA, CNAME, DS, MX, NS, SPF, SRV, SSHFP, TLSA, TXT ]
|
||||
value:
|
||||
description:
|
||||
- The record value.
|
||||
- Required for C(state=present).
|
||||
- Required for I(state=present).
|
||||
type: str
|
||||
aliases: [ content ]
|
||||
weight:
|
||||
description:
|
||||
- Service weight.
|
||||
- Required for C(type=SRV).
|
||||
- Required for I(type=SRV).
|
||||
type: int
|
||||
default: 1
|
||||
zone:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue