cloudstack: add api_region arg

* docs in module_docs_fragments/cloudstack.py
* implemented in module_utils/cloudstack.py -> https://github.com/ansible/ansible/pull/12083
This commit is contained in:
Rene Moser 2015-08-31 08:59:39 +02:00 committed by Matt Clay
parent e2481ff1e6
commit 297312546d
17 changed files with 17 additions and 0 deletions

View file

@ -182,6 +182,7 @@ def main():
api_url = dict(default=None),
api_http_method = dict(choices=['get', 'post'], default='get'),
api_timeout = dict(type='int', default=10),
api_region = dict(default='cloudstack'),
),
required_together = (
['api_key', 'api_secret', 'api_url'],