Skip to content

Commit

Permalink
[validate-modules/rundeck_key_storage] : fix some validate-modules de…
Browse files Browse the repository at this point in the history
…tected errors
  • Loading branch information
aminx4 committed Jan 2, 2019
1 parent 7ba054a commit dc1fb19
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions lib/ansible/modules/web_infrastructure/rundeck_key_storage.py
Expand Up @@ -22,8 +22,7 @@
short_description: Manage Rundeck key storage.
description:
- Upload, update, delete Rundeck key storage through HTTP API.
version_added: "3.0.9"
rundeck_api_version: "27"
version_added: "2.8"
author: "Amine CHIKOUCHE (@aminx4)"
options:
type:
Expand All @@ -38,19 +37,29 @@
data:
description:
- set the key data
url:
description:
- Sets the rundeck instance URL.
required: True
api_version:
description:
- Sets the API version used by module.
- API version must be at least 14.
default: 14
url:
description:
- Sets the rundeck instance URL.
required: True
token:
description:
- Sets the token to authenticate against Rundeck API.
required: True
state:
description:
- create, update or remove a key
choices: ['present', 'absent']
default: present
check_mode:
description:
- activate check mode
choices: ['yes', 'no']
default: no
'''

EXAMPLES = '''
Expand Down

0 comments on commit dc1fb19

Please sign in to comment.