1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix digital_ocean module_util api_token bug (#28924)

* Fix digital_ocean module_util api_token bug

* Included environment variables also

* Removed try/catch and added a check on self.oauth_token

Modules using the DigitalOceanHelper would expect the module to handle any api key resolution.
This commit is contained in:
ABond 2017-09-06 10:14:10 -04:00 committed by Toshio Kuratomi
parent 0ddbcf8841
commit 082f54eaf4

View file

@ -92,11 +92,10 @@ class DigitalOceanHelper:
return self.send('DELETE', path, data)
def get_do_oauth_token(self):
try:
self.oauth_token = self.module.params['oauth_token'] or \
self.module.params['api_token'] or \
os.environ['DO_API_TOKEN'] or \
os.environ['DO_API_KEY'] or \
os.environ['OAUTH_TOKEN']
except KeyError as e:
self.module.fail_json(msg='Unable to load %s' % e.message)
self.oauth_token = self.module.params.get('oauth_token') or \
self.module.params.get('api_token') or \
os.environ.get('DO_API_TOKEN') or \
os.environ.get('DO_API_KEY') or \
os.environ.get('OAUTH_TOKEN')
if self.oauth_token is None:
self.module.fail_json(msg='Unable to load api key: oauth_token')