-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
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
ensure consistency with ewizapp code #36
Conversation
35b8c6d
to
800d2b3
Compare
aws_access_key_id=access_key, | ||
aws_secret_access_key=secret_key, | ||
aws_session_token=session_token) | ||
secret = os.getenv('AWS_SECRET_ACCESS_KEY') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The app uses SSO to access aws resources so the cloud team removed the assert statements since they were breaking the deployment. Doing it this way should preserve functionality locally and keep the deployment structure intact . Let me know what you think.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's fine, you could also raise a warning that would be ignored on the app
aws_access_key_id=access_key, | ||
aws_secret_access_key=secret_key, | ||
aws_session_token=session_token) | ||
secret = os.getenv('AWS_SECRET_ACCESS_KEY') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's fine, you could also raise a warning that would be ignored on the app
ensure consistency with ewizapp code
No description provided.