mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
exoscale: fix api_key param auth typo
This commit is contained in:
parent
5d1d1a72c5
commit
58cd107166
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ class ExoDns(object):
|
|||
def __init__(self, module):
|
||||
self.module = module
|
||||
|
||||
self.api_key = self.module.params. get('api_key')
|
||||
self.api_key = self.module.params.get('api_key')
|
||||
self.api_secret = self.module.params.get('api_secret')
|
||||
if not (self.api_key and self.api_secret):
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue