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

Only specify to USE_KEYRING as the api_key/password when we actually got a keyring_username from ~/.pyrax.cfg

This commit is contained in:
Matt Martz 2014-01-24 11:40:34 -06:00
parent 1ac7dffd55
commit 021b926235

View file

@ -45,6 +45,7 @@ def setup_rax_module(module, rax_module):
username = username or os.environ.get('RAX_USERNAME')
if not username:
username = rax_module.get_setting('keyring_username')
if username:
api_key = 'USE_KEYRING'
if not api_key:
api_key = os.environ.get('RAX_API_KEY')