-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add option to upload result to s3 #49
Conversation
8990a4f
to
936fe8e
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.
This looks reasonable to me.
help="An S3 bucket to save the results to. If specified, you must also specify a result-key", | ||
) | ||
@click.option( | ||
"--result-key", | ||
required=False, | ||
help="An S3 object key to save the results to. If used, result-bucket must be specified.", |
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.
Should we check result_bucket
and result_key
are both provided, if either is provided and emit a helpful error message, if not?
@click.option( | ||
"--result-bucket", | ||
required=False, | ||
help="An S3 bucket to save the results to. If specified, you must also specify a result-key", | ||
) | ||
@click.option( | ||
"--result-key", | ||
required=False, | ||
help="An S3 object key to save the results to. If used, result-bucket must be specified.", | ||
) |
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.
Should we check result_bucket
and result_key
are both provided, if either is provided and emit a helpful error message, if not?
Description
This PR contains changes to support passing dashboard info generated by terraform driven scripts to downstream ansible scripts.
So this PR adds the ability:
These features are invoked here.
Motivation and Context
https://ebce-lyrasis.atlassian.net/browse/PP-516
https://github.com/ThePalaceProject/hosting-playbook/pull/518
How Has This Been Tested?
Changes are covered by updates to existing unit tests.
Checklist