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.
pull/29044/head
ABond 7 years ago committed by Toshio Kuratomi
parent 0ddbcf8841
commit 082f54eaf4

@ -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')

Loading…
Cancel
Save