Fix documented defaults in the nsupdate module (#23532)
Let the documentation reflect what the module actually implements.pull/4420/head
parent
8b4f5ba064
commit
40f9f98f7c
|
@ -45,6 +45,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Manage DNS record.
|
- Manage DNS record.
|
||||||
choices: ['present', 'absent']
|
choices: ['present', 'absent']
|
||||||
|
default: 'present'
|
||||||
server:
|
server:
|
||||||
description:
|
description:
|
||||||
- Apply DNS modification on this server.
|
- Apply DNS modification on this server.
|
||||||
|
@ -55,12 +56,12 @@ options:
|
||||||
key_secret:
|
key_secret:
|
||||||
description:
|
description:
|
||||||
- Use TSIG key secret, associated with C(key_name), to authenticate against C(server)
|
- Use TSIG key secret, associated with C(key_name), to authenticate against C(server)
|
||||||
default: 7911
|
|
||||||
key_algorithm:
|
key_algorithm:
|
||||||
description:
|
description:
|
||||||
- Specify key algorithm used by C(key_secret).
|
- Specify key algorithm used by C(key_secret).
|
||||||
choices: ['HMAC-MD5.SIG-ALG.REG.INT', 'hmac-md5', 'hmac-sha1', 'hmac-sha224', 'hmac-sha256', 'hamc-sha384',
|
choices: ['HMAC-MD5.SIG-ALG.REG.INT', 'hmac-md5', 'hmac-sha1', 'hmac-sha224', 'hmac-sha256', 'hamc-sha384',
|
||||||
'hmac-sha512']
|
'hmac-sha512']
|
||||||
|
default: 'hmac-md5'
|
||||||
zone:
|
zone:
|
||||||
description:
|
description:
|
||||||
- DNS record will be modified on this C(zone).
|
- DNS record will be modified on this C(zone).
|
||||||
|
|
Loading…
Reference in New Issue