-
Notifications
You must be signed in to change notification settings - Fork 410
Fix/ssm bucket auth #854
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
Fix/ssm bucket auth #854
Changes from all commits
b357a24
834c8f8
aa47fb8
5d4f1c5
6c7c9b0
3f29fd3
4780af1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| minor_changes: | ||
| - aws_ssm connection plugin - added support for an independent bucket region (https://github.com/ansible-collections/community.aws/pull/854). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,4 +7,5 @@ windows_ami_name: Windows_Server-2019-English-Full-Base-* | |
| # see: | ||
| # - https://github.com/mattclay/aws-terminator/pull/181 | ||
| # - https://github.com/ansible-collections/community.aws/pull/763 | ||
| s3_bucket_name: ssm-encrypted-test-bucket | ||
| s3_bucket_name: "{{ tiny_prefix }}-ssm-encrypted-test-bucket" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @gillg Thank you for working on this. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 24h to create a bucket 😨 !? I'm surprised but why not. If there is no workaround what would be the next steps ? Do we assume to skip integration tests for this plugin for now ? In the meantime I try to work on other PRs because I use this plugin for the first time and I prefer make it stable and close all pending PRs since almost 1yr. |
||
| s3_bucket_region: us-west-2 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,6 +21,7 @@ aws_ssm_linux | |
| [aws_ssm:vars] | ||
| ansible_connection=community.aws.aws_ssm | ||
| ansible_aws_ssm_bucket_name={{s3_bucket_name}} | ||
| ansible_aws_ssm_bucket_region={{s3_bucket_region}} | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Most important part for integration test |
||
| ansible_aws_ssm_plugin=/usr/local/sessionmanagerplugin/bin/session-manager-plugin | ||
| ansible_python_interpreter=/usr/bin/env python | ||
| local_tmp=/tmp/ansible-local- | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| --- | ||
| #bucket_name: {{s3_output.name}} | ||
| bucket_name: {{s3_output.name}} |
Uh oh!
There was an error while loading. Please reload this page.