mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Sync required flags from argument_spec to docs (#56121)
<!--- Your description here --> The arguments for certificate, private_key and password are marked as required in the ArgumentSpec, but not in the documentation. +label: docsite_pr
This commit is contained in:
parent
647ed207af
commit
6b474a1ecd
1 changed files with 3 additions and 3 deletions
|
@ -28,15 +28,15 @@ options:
|
||||||
certificate:
|
certificate:
|
||||||
description:
|
description:
|
||||||
- Certificate that should be used to create the key store.
|
- Certificate that should be used to create the key store.
|
||||||
required: false
|
required: true
|
||||||
private_key:
|
private_key:
|
||||||
description:
|
description:
|
||||||
- Private key that should be used to create the key store.
|
- Private key that should be used to create the key store.
|
||||||
required: false
|
required: true
|
||||||
password:
|
password:
|
||||||
description:
|
description:
|
||||||
- Password that should be used to secure the key store.
|
- Password that should be used to secure the key store.
|
||||||
required: false
|
required: true
|
||||||
dest:
|
dest:
|
||||||
description:
|
description:
|
||||||
- Absolute path where the jks should be generated.
|
- Absolute path where the jks should be generated.
|
||||||
|
|
Loading…
Reference in a new issue