mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add attributes to consul, datadog, jenkins, pagerduty, rundeck, and sensu modules (#5957)
* Add attributes to consul, datadog, jenkins, pagerduty, rundeck, and sensu modules. * Fix error.
This commit is contained in:
parent
bad4b4b086
commit
1f1ae558f9
23 changed files with 174 additions and 14 deletions
|
@ -33,6 +33,13 @@ requirements:
|
|||
- python-consul
|
||||
- requests
|
||||
author: "Steve Gargan (@sgargan)"
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
type: str
|
||||
|
|
|
@ -19,6 +19,13 @@ description:
|
|||
author:
|
||||
- Steve Gargan (@sgargan)
|
||||
- Colin Nolan (@colin-nolan)
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
mgmt_token:
|
||||
description:
|
||||
|
|
|
@ -26,6 +26,13 @@ requirements:
|
|||
author:
|
||||
- Steve Gargan (@sgargan)
|
||||
- Colin Nolan (@colin-nolan)
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
description:
|
||||
|
|
|
@ -21,6 +21,13 @@ requirements:
|
|||
- requests
|
||||
author:
|
||||
- Steve Gargan (@sgargan)
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
id:
|
||||
description:
|
||||
|
|
|
@ -22,6 +22,13 @@ author:
|
|||
requirements:
|
||||
- datadog-api-client
|
||||
- Python 3.6+
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
api_key:
|
||||
description:
|
||||
|
|
|
@ -24,6 +24,13 @@ description:
|
|||
author:
|
||||
- "Artūras 'arturaz' Šlajus (@arturaz)"
|
||||
- "Naoya Nakazawa (@n0ts)"
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
api_key:
|
||||
type: str
|
||||
|
|
|
@ -19,6 +19,13 @@ description:
|
|||
- The type C(event-v2) was added in community.general 4.8.0.
|
||||
author: Sebastian Kornehl (@skornehl)
|
||||
requirements: [datadog]
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
api_key:
|
||||
description:
|
||||
|
|
|
@ -20,6 +20,13 @@ requirements:
|
|||
author:
|
||||
- Brett Milford (@brettmilford)
|
||||
- Tong He (@unnecessary-username)
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
args:
|
||||
description:
|
||||
|
|
|
@ -17,6 +17,13 @@ description:
|
|||
requirements:
|
||||
- "python-jenkins >= 0.4.12"
|
||||
author: "Sergio Millan Rodriguez (@sermilrod)"
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: full
|
||||
options:
|
||||
config:
|
||||
type: str
|
||||
|
|
|
@ -17,6 +17,12 @@ short_description: Add or remove Jenkins plugin
|
|||
description:
|
||||
- Ansible module which helps to manage Jenkins plugins.
|
||||
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
|
||||
options:
|
||||
group:
|
||||
type: str
|
||||
|
@ -129,8 +135,9 @@ notes:
|
|||
parameter to point to the Jenkins server. The module must be used on the
|
||||
host where Jenkins runs as it needs direct access to the plugin files.
|
||||
extends_documentation_fragment:
|
||||
- url
|
||||
- files
|
||||
- ansible.builtin.url
|
||||
- ansible.builtin.files
|
||||
- community.general.attributes
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
|
|
@ -18,6 +18,15 @@ description:
|
|||
- The C(jenkins_script) module takes a script plus a dict of values
|
||||
to use within the script and returns the result of the script being run.
|
||||
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
|
||||
options:
|
||||
script:
|
||||
type: str
|
||||
|
|
|
@ -22,6 +22,13 @@ author:
|
|||
- "Bruce Pennypacker (@bpennypacker)"
|
||||
requirements:
|
||||
- PagerDuty API access
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
type: str
|
||||
|
|
|
@ -18,6 +18,13 @@ author:
|
|||
- "Amanpreet Singh (@ApsOps)"
|
||||
requirements:
|
||||
- PagerDuty API access
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
name:
|
||||
type: str
|
||||
|
|
|
@ -19,6 +19,15 @@ author:
|
|||
- Adam Vaughan (@adamvaughan)
|
||||
requirements:
|
||||
- PagerDuty integration key
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
details:
|
||||
- Check mode simply does nothing except returning C(changed=true) in case the I(url) seems to be correct.
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
integration_key:
|
||||
description:
|
||||
|
@ -78,8 +87,6 @@ options:
|
|||
required: false
|
||||
default: true
|
||||
type: bool
|
||||
notes:
|
||||
- Supports C(check_mode). Note that check mode simply does nothing except returning C(changed=true) in case the I(url) seems to be correct.
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
|
|
@ -19,6 +19,13 @@ author: Zainab Alsaffar (@zanssa)
|
|||
requirements:
|
||||
- pdpyras python module = 4.1.1
|
||||
- PagerDuty API Access
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
access_token:
|
||||
description:
|
||||
|
@ -56,8 +63,6 @@ options:
|
|||
- Required if I(state=present).
|
||||
type: list
|
||||
elements: str
|
||||
notes:
|
||||
- Supports C(check_mode).
|
||||
'''
|
||||
|
||||
EXAMPLES = r'''
|
||||
|
|
|
@ -19,6 +19,11 @@ short_description: Manage Rundeck ACL policies
|
|||
description:
|
||||
- Create, update and remove Rundeck ACL policies through HTTP API.
|
||||
author: "Loic Blot (@nerzhul)"
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
type: str
|
||||
|
@ -76,7 +81,9 @@ options:
|
|||
version_added: '0.2.0'
|
||||
validate_certs:
|
||||
version_added: '0.2.0'
|
||||
extends_documentation_fragment: url
|
||||
extends_documentation_fragment:
|
||||
- ansible.builtin.url
|
||||
- community.general.attributes
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
|
|
@ -17,6 +17,11 @@ description:
|
|||
- This module runs a Rundeck job specified by ID.
|
||||
author: "Phillipe Smith (@phsmith)"
|
||||
version_added: 3.8.0
|
||||
attributes:
|
||||
check_mode:
|
||||
support: none
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
job_id:
|
||||
type: str
|
||||
|
@ -68,7 +73,8 @@ options:
|
|||
default: false
|
||||
extends_documentation_fragment:
|
||||
- community.general.rundeck
|
||||
- url
|
||||
- ansible.builtin.url
|
||||
- community.general.attributes
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
|
|
@ -21,6 +21,11 @@ short_description: Manage Rundeck projects
|
|||
description:
|
||||
- Create and remove Rundeck projects through HTTP API.
|
||||
author: "Loic Blot (@nerzhul)"
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
type: str
|
||||
|
@ -67,7 +72,9 @@ options:
|
|||
version_added: '0.2.0'
|
||||
validate_certs:
|
||||
version_added: '0.2.0'
|
||||
extends_documentation_fragment: url
|
||||
extends_documentation_fragment:
|
||||
- ansible.builtin.url
|
||||
- community.general.attributes
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
|
|
@ -18,6 +18,13 @@ description:
|
|||
- Most options do not have a default and will not be added to the check definition unless specified.
|
||||
- All defaults except I(path), I(state), I(backup) and I(metric) are not managed by this module,
|
||||
- they are simply specified for your convenience.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
name:
|
||||
type: str
|
||||
|
|
|
@ -16,6 +16,13 @@ short_description: Manages Sensu client configuration
|
|||
description:
|
||||
- Manages Sensu client configuration.
|
||||
- 'For more information, refer to the Sensu documentation: U(https://sensuapp.org/docs/latest/reference/clients.html)'
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
type: str
|
||||
|
|
|
@ -16,6 +16,13 @@ short_description: Manages Sensu handler configuration
|
|||
description:
|
||||
- Manages Sensu handler configuration
|
||||
- 'For more information, refer to the Sensu documentation: U(https://sensuapp.org/docs/latest/reference/handlers.html)'
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
state:
|
||||
type: str
|
||||
|
|
|
@ -17,6 +17,13 @@ short_description: Manage Sensu silence entries
|
|||
description:
|
||||
- Create and clear (delete) a silence entries via the Sensu API
|
||||
for subscriptions and checks.
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
check:
|
||||
type: str
|
||||
|
|
|
@ -15,6 +15,13 @@ module: sensu_subscription
|
|||
short_description: Manage Sensu subscriptions
|
||||
description:
|
||||
- Manage which I(sensu channels) a machine should subscribe to
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
options:
|
||||
name:
|
||||
type: str
|
||||
|
|
Loading…
Reference in a new issue