zabbix_group: add backword compatibility
* add alias host_group for host_groups * add choices for param state
This commit is contained in:
parent
d944e2e9ea
commit
a497a5a2a3
1 changed files with 4 additions and 3 deletions
|
@ -55,6 +55,7 @@ options:
|
||||||
- Possible values are: present and absent.
|
- Possible values are: present and absent.
|
||||||
required: false
|
required: false
|
||||||
default: "present"
|
default: "present"
|
||||||
|
choices: [ "present", "absent" ]
|
||||||
timeout:
|
timeout:
|
||||||
description:
|
description:
|
||||||
- The timeout of API request(seconds).
|
- The timeout of API request(seconds).
|
||||||
|
@ -63,6 +64,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- List of host groups to create or delete.
|
- List of host groups to create or delete.
|
||||||
required: true
|
required: true
|
||||||
|
aliases: [ "host_group" ]
|
||||||
notes:
|
notes:
|
||||||
- Too many concurrent updates to the same group may cause Zabbix to return errors, see examples for a workaround if needed.
|
- Too many concurrent updates to the same group may cause Zabbix to return errors, see examples for a workaround if needed.
|
||||||
'''
|
'''
|
||||||
|
@ -152,8 +154,8 @@ def main():
|
||||||
server_url=dict(required=True, aliases=['url']),
|
server_url=dict(required=True, aliases=['url']),
|
||||||
login_user=dict(required=True),
|
login_user=dict(required=True),
|
||||||
login_password=dict(required=True),
|
login_password=dict(required=True),
|
||||||
host_groups=dict(required=True),
|
host_groups=dict(required=True, aliases=['host_group']),
|
||||||
state=dict(default="present"),
|
state=dict(default="present", choices=['present','absent']),
|
||||||
timeout=dict(default=10)
|
timeout=dict(default=10)
|
||||||
),
|
),
|
||||||
supports_check_mode=True
|
supports_check_mode=True
|
||||||
|
@ -206,4 +208,3 @@ def main():
|
||||||
|
|
||||||
from ansible.module_utils.basic import *
|
from ansible.module_utils.basic import *
|
||||||
main()
|
main()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue