-
Notifications
You must be signed in to change notification settings - Fork 14
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
Feature/auth methods #14
base: main
Are you sure you want to change the base?
Conversation
9ce7108
to
eeb6ccf
Compare
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.
A few initial comments.
AWS_ACCESS_KEY_ID: ${{ vars.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ vars.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.
What are these used for?
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.
These are used for unit tests, they allow to init the boto3 sessions. They contain dummy values.
src/emr_cli/emr_cli.py
Outdated
@click.option( | ||
"--profile", | ||
help="The AWS profile to use for bootstraping the environment.", | ||
) |
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 run
command errors out as this is not passed in as an argument in def run()
below.
conventions fix Co-authored-by: Damon P. Cortesi <d.lifehacker@gmail.com>
Lint Co-authored-by: Damon P. Cortesi <d.lifehacker@gmail.com>
Description of changes:
Adds a new
--profile
option to bootstrap to allow you to specify the AWS profile you want to use.By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.