From 052384ceec26437ca6ba507c2ef5a87ed7db11a0 Mon Sep 17 00:00:00 2001 From: spengreb Date: Fri, 30 Aug 2019 16:22:52 +0200 Subject: [PATCH] Revert back to replacing default credentials due to issues with getting the correct statefile --- atmos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atmos.py b/atmos.py index 389d2b2..db8b98a 100755 --- a/atmos.py +++ b/atmos.py @@ -98,7 +98,7 @@ def generate_creds(args): except: print("[ERROR]: Env Variable " + secret_key_name + " not found.") sys.exit(1) - with open(os.path.expanduser('~/.aws/credentials-atmos'), 'w+') as f: + with open(os.path.expanduser('~/.aws/credentials'), 'w+') as f: f.write(contents) def get_valid_envs():