We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Note the Network Visualization functionality (command prepare) is no longer maintained.
prepare
Code being called - collect.py Working out of a virtualenv environment and Docker
I have a few questions regarding the default region in the collect.py code.
default_region = os.environ.get("AWS_REGION", 'us-east-1')
if 'gov-' in default_region: default_region = 'us-gov-west-1' elif 'cn-' in default_region: default_region = 'cn-north-1' else: default_region = 'us-east-1'
The text was updated successfully, but these errors were encountered:
Can anyone respond to my queries?
Sorry, something went wrong.
Seems like it gets the environment variable 'AWS_REGION' and if its not set it makes the default region be 'us-east-1', but I am guessing.
No branches or pull requests
Note the Network Visualization functionality (command
prepare
) is no longer maintained.Code being called - collect.py
Working out of a virtualenv environment and Docker
I have a few questions regarding the default region in the collect.py code.
default_region = os.environ.get("AWS_REGION", 'us-east-1')
The text was updated successfully, but these errors were encountered: