-
Notifications
You must be signed in to change notification settings - Fork 10
feat: add support for AWS provider v5 #46
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
feat: add support for AWS provider v5 #46
Conversation
|
I also noticed that CI is still being tested using provider version 3. I'm happy to copy/paste a new test case which uses provider v5, or just bump the existing test cases to use v5. |
|
make it so |
|
@dmurray-lacework thanks for reviewing this. Since CI passed, could we get this merged (and then also get a new release)? Thanks. |
versions.tf
Outdated
|
|
||
| required_providers { | ||
| aws = ">= 3.0, < 5.0.0" | ||
| aws = ">= 3.0, < 6.0.0" |
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.
Hi @jrobison-sb from discussion on the other module PR's we'd like to follow the approach here to versioning lacework/terraform-aws-config#65
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.
@dmurray-lacework I pushed a new commit which pins >= 3.0. Thanks.
|
make it so (run tests) |
Summary
We would like to be able to upgrade to AWS provider v5.0, which was just recently released.
How did you test this change?
Clone this repo locally, change the version pin, then change my
sourcefor the module to point at my local copy. Then I ran aterraform planand verified that it works, with no diffs.Issue
#45