-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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!: Replace use of toset()
for policy attachment, bump min version of AWS provider to 4.0
and Terraform to 1.0
#250
feat!: Replace use of toset()
for policy attachment, bump min version of AWS provider to 4.0
and Terraform to 1.0
#250
Conversation
] | ||
role_policy_arns = { | ||
AmazonEKS_CNI_Policy = "arn:aws:iam::aws:policy/AmazonEKS_CNI_Policy" | ||
additional = aws_iam_policy.additional.arn |
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.
Demonstrates computed resource usage which is what was raised in #193
@antonbabenko would it be worthwhile to go up to 0.14 to use |
@antonbabenko just FYI in case you missed it - happy to hear your thoughts 😬 |
I was away for a few days, got 100000001 unread notifications from GitHub :) The PR looks very good. I agree, let's upgrade to 0.14 just for Keep in mind, that 0.15 had the same amount of improvements for |
No worries, I figured! Let me take at 0.15 vs 0.14 differences, most likely safe to go to 0.15 |
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.
Nice 💖
toset()
for policy attachment, bump min version of AWS provider to 4.0
and Terraform to 0.13.1
toset()
for policy attachment, bump min version of AWS provider to 4.0
and Terraform to 1.0
@antonbabenko went all the way up to 1.0 |
@bryantbiggs terraform-aws-modules going GA! Hooray! 🎉 Looks good to me |
@bryantbiggs Please merge whenever you are ready. |
@antonbabenko it looks like you need to approve first before I can merge 😅 |
## [5.0.0](v4.24.1...v5.0.0) (2022-05-18) ### ⚠ BREAKING CHANGES * Replace use of `toset()` for policy attachment, bump min version of AWS provider to `4.0` and Terraform to `1.0` (#250) ### Features * Replace use of `toset()` for policy attachment, bump min version of AWS provider to `4.0` and Terraform to `1.0` ([#250](#250)) ([835135b](835135b))
This PR is included in version 5.0.0 🎉 |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Description
toset()
for IAM policy document attachment on EKS roles to avoid error in Partial/Progressive Configuration Changes hashicorp/terraform#4149 by using static keys for the map instead of computed4.0
1.0
Motivation and Context
4.1.0
there are a number of new IAM resources that can now be utilized within this module https://github.com/hashicorp/terraform-provider-aws/blob/main/CHANGELOG.md#410-february-15-2022Breaking Changes
How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectspre-commit run -a
on my pull request