-
Notifications
You must be signed in to change notification settings - Fork 215
Open
Description
Hi there, I just tried to run this tool today with -env aws.
I kept getting this exception in a few different spots:
File "cs.py", line 89, in <module>
main()
File "cs.py", line 53, in main
from modules import awsaudit
File "/Users/coltonleese/cs-suite/modules/awsaudit.py", line 30, in <module>
account_name = get_account_alias() or get_account_id()
File "/Users/coltonleese/cs-suite/modules/awsaudit.py", line 15, in get_account_alias
account_details = json.loads(str(account_details))
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/__init__.py", line 338, in loads
return _default_decoder.decode(s)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/decoder.py", line 366, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/decoder.py", line 384, in raw_decode
raise ValueError("No JSON object could be decoded")
ValueError: No JSON object could be decoded
I fixed it by changing the command
subprocess.check_output(['aws sts get-caller-identity')], shell=True
to
subprocess.check_output(['aws sts get-caller-identity --output json')], shell=True
I can submit a PR if you want but don't know if this is widely applicable.
thanks.
Metadata
Metadata
Assignees
Labels
No labels