mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #15213 from resmo/fix/cloudstack-api-secret-arg
cloudstack: fix bug, api_secret always None
This commit is contained in:
commit
c0618794a2
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