-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
r/aws_eks_addon: fix
pod_identity_association
updates
Previously changes to the `pod_identity_association` argument did not properly trigger the update flow, resulting in persistent differences when attempting to add this argument. Additionally, removal of this argument did not send the correct value to the API to trigger deletion of the existing pod identity associations. This changes fixes both scenarios such that additional and removal of this argument should now function as expected. ```console % make testacc PKG=eks TESTS="TestAccEKSAddon_podIdentityAssociation" make: Verifying source code with gofmt... ==> Checking that code complies with gofmt requirements... TF_ACC=1 go1.23.2 test ./internal/service/eks/... -v -count 1 -parallel 20 -run='TestAccEKSAddon_podIdentityAssociation' -timeout 360m 2024/11/19 10:00:07 Initializing Terraform AWS Provider... --- PASS: TestAccEKSAddon_podIdentityAssociation (796.83s) PASS ok github.com/hashicorp/terraform-provider-aws/internal/service/eks 803.299s ```
- Loading branch information
Showing
3 changed files
with
46 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
```release-note:bug | ||
resource/aws_eks_addon: Fix crash when `pod_identity_association` is modified | ||
``` | ||
```release-note:bug | ||
resource/aws_eks_addon: Fix to prevent persistent differences when `pod_identity_association` is changed | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters