mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 11:51:26 -07:00
cloudstack: add choices for api_http_method
This commit is contained in:
parent
2ca6d151b2
commit
b30fda4906
11 changed files with 11 additions and 31 deletions
|
@ -71,7 +71,6 @@ EXAMPLES = '''
|
|||
name: haproxy
|
||||
affinty_type: host anti-affinity
|
||||
|
||||
|
||||
# Remove a affinity group
|
||||
- local_action:
|
||||
module: cs_affinitygroup
|
||||
|
@ -220,7 +219,7 @@ def main():
|
|||
api_key = dict(default=None),
|
||||
api_secret = dict(default=None, no_log=True),
|
||||
api_url = dict(default=None),
|
||||
api_http_method = dict(default='get'),
|
||||
api_http_method = dict(choices=['get', 'post'], default='get'),
|
||||
api_timeout = dict(type='int', default=10),
|
||||
),
|
||||
required_together = (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue