1
0
Fork 0
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:
Rene Moser 2017-08-22 01:32:28 +02:00 committed by René Moser
parent 5d1d1a72c5
commit 58cd107166

View file

@ -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: