summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriinuwa <27717214+iinuwa@users.noreply.github.com>2019-05-06 16:49:07 -0500
committerAlicia Cozine <879121+acozine@users.noreply.github.com>2019-05-06 16:49:07 -0500
commit6b474a1ecdfd3c9fb72fa8b3ada98ff58fdd1681 (patch)
tree2e497c553cc336383e1cfea83ce9df23e9f19999
parent647ed207afaa662cb700eee95f50f1a3a016b550 (diff)
downloadansible-6b474a1ecdfd3c9fb72fa8b3ada98ff58fdd1681.tar.gz
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
-rw-r--r--lib/ansible/modules/system/java_keystore.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ansible/modules/system/java_keystore.py b/lib/ansible/modules/system/java_keystore.py
index abd15ec00b..51b4bd7c60 100644
--- a/lib/ansible/modules/system/java_keystore.py
+++ b/lib/ansible/modules/system/java_keystore.py
@@ -28,15 +28,15 @@ options:
certificate:
description:
- Certificate that should be used to create the key store.
- required: false
+ required: true
private_key:
description:
- Private key that should be used to create the key store.
- required: false
+ required: true
password:
description:
- Password that should be used to secure the key store.
- required: false
+ required: true
dest:
description:
- Absolute path where the jks should be generated.