-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
r/aws_iam_group_policies_exclusive: new resource #39554
Conversation
Community NoteVoting for Prioritization
For Submitters
|
c7e55e8
to
1773315
Compare
This resource will enable exclusive management of IAM group policy attachments via Terraform. ```console % make testacc PKG=iam TESTS=TestAccIAMGroupPoliciesExclusive_ make: Verifying source code with gofmt... ==> Checking that code complies with gofmt requirements... TF_ACC=1 go1.23.1 test ./internal/service/iam/... -v -count 1 -parallel 20 -run='TestAccIAMGroupPoliciesExclusive_' -timeout 360m --- PASS: TestAccIAMGroupPoliciesExclusive_disappears_Group (15.36s) --- PASS: TestAccIAMGroupPoliciesExclusive_empty (15.37s) --- PASS: TestAccIAMGroupPoliciesExclusive_basic (17.31s) --- PASS: TestAccIAMGroupPoliciesExclusive_outOfBandAddition (23.80s) --- PASS: TestAccIAMGroupPoliciesExclusive_outOfBandRemoval (23.85s) --- PASS: TestAccIAMGroupPoliciesExclusive_multiple (25.71s) PASS ok github.com/hashicorp/terraform-provider-aws/internal/service/iam 31.049s ```
1773315
to
7ab7cde
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.
LGTM 🚀.
% make testacc TESTARGS='-run=TestAccIAMGroupPoliciesExclusive_' PKG=iam ACCTEST_PARALLELISM=3
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.23.1 test ./internal/service/iam/... -v -count 1 -parallel 3 -run=TestAccIAMGroupPoliciesExclusive_ -timeout 360m
=== RUN TestAccIAMGroupPoliciesExclusive_basic
=== PAUSE TestAccIAMGroupPoliciesExclusive_basic
=== RUN TestAccIAMGroupPoliciesExclusive_disappears_Group
=== PAUSE TestAccIAMGroupPoliciesExclusive_disappears_Group
=== RUN TestAccIAMGroupPoliciesExclusive_multiple
=== PAUSE TestAccIAMGroupPoliciesExclusive_multiple
=== RUN TestAccIAMGroupPoliciesExclusive_empty
=== PAUSE TestAccIAMGroupPoliciesExclusive_empty
=== RUN TestAccIAMGroupPoliciesExclusive_outOfBandRemoval
=== PAUSE TestAccIAMGroupPoliciesExclusive_outOfBandRemoval
=== RUN TestAccIAMGroupPoliciesExclusive_outOfBandAddition
=== PAUSE TestAccIAMGroupPoliciesExclusive_outOfBandAddition
=== CONT TestAccIAMGroupPoliciesExclusive_basic
=== CONT TestAccIAMGroupPoliciesExclusive_empty
=== CONT TestAccIAMGroupPoliciesExclusive_outOfBandAddition
--- PASS: TestAccIAMGroupPoliciesExclusive_empty (11.09s)
=== CONT TestAccIAMGroupPoliciesExclusive_multiple
--- PASS: TestAccIAMGroupPoliciesExclusive_basic (12.87s)
=== CONT TestAccIAMGroupPoliciesExclusive_outOfBandRemoval
--- PASS: TestAccIAMGroupPoliciesExclusive_outOfBandAddition (18.19s)
=== CONT TestAccIAMGroupPoliciesExclusive_disappears_Group
--- PASS: TestAccIAMGroupPoliciesExclusive_disappears_Group (10.70s)
--- PASS: TestAccIAMGroupPoliciesExclusive_multiple (18.99s)
--- PASS: TestAccIAMGroupPoliciesExclusive_outOfBandRemoval (17.21s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/iam 35.658s
This functionality has been released in v5.70.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
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. |
Description
This resource will enable exclusive management of inline policy assignments to an IAM group via Terraform.
Relations
Relates #39376
Closes #39378
References
Output from Acceptance Testing