cloudstack: fix bug, api_secret always None
In case if api args are used, api_secret is None in every cloudstack module.
This commit is contained in:
parent
eab4ce19f3
commit
65e61e340a
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ class AnsibleCloudStack(object):
|
|||
|
||||
def _connect(self):
|
||||
api_key = self.module.params.get('api_key')
|
||||
api_secret = self.module.params.get('secret_key')
|
||||
api_secret = self.module.params.get('api_secret')
|
||||
api_url = self.module.params.get('api_url')
|
||||
api_http_method = self.module.params.get('api_http_method')
|
||||
api_timeout = self.module.params.get('api_timeout')
|
||||
|
|
Loading…
Reference in a new issue