-
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
Bug26868: fix RAM CSR retrieval #39952
Conversation
Community NoteVoting for Prioritization
For Submitters
|
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.
Welcome @maxim-anetac 👋
It looks like this is your first Pull Request submission to the Terraform AWS Provider! If you haven’t already done so please make sure you have checked out our CONTRIBUTOR guide and FAQ to make sure your contribution is adhering to best practice and has all the necessary elements in place for a successful approval.
Also take a look at our FAQ which details how we prioritize Pull Requests for inclusion.
Thanks again, and welcome to the community! 😃
@justinretzolk could you review this PR please? |
Hey @greg-anetac 👋 Thanks for checking in here! I can't speak to when this will be prioritized just yet. We base our prioritization on the count of 👍 reactions and a few other considerations (more information: prioritization guide). |
@justinretzolk what's the threshold of 👍 reactions that is needed to make this PR considered for prioritization? |
@justinretzolk this PR is now in the top 10 unmerged PRs by number of likes. Any chance of getting it merged? It's costing us $2K/month. |
# Conflicts: # internal/service/acmpca/certificate_authority_data_source.go
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=TestAccACMPCACertificateAuthorityDataSource_' PKG=acmpca ACCTEST_PARALLELISM=2
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.23.3 test ./internal/service/acmpca/... -v -count 1 -parallel 2 -run=TestAccACMPCACertificateAuthorityDataSource_ -timeout 360m
2024/12/12 14:15:32 Initializing Terraform AWS Provider...
=== RUN TestAccACMPCACertificateAuthorityDataSource_tags
=== PAUSE TestAccACMPCACertificateAuthorityDataSource_tags
=== RUN TestAccACMPCACertificateAuthorityDataSource_tags_NullMap
=== PAUSE TestAccACMPCACertificateAuthorityDataSource_tags_NullMap
=== RUN TestAccACMPCACertificateAuthorityDataSource_tags_EmptyMap
=== PAUSE TestAccACMPCACertificateAuthorityDataSource_tags_EmptyMap
=== RUN TestAccACMPCACertificateAuthorityDataSource_tags_DefaultTags_nonOverlapping
=== PAUSE TestAccACMPCACertificateAuthorityDataSource_tags_DefaultTags_nonOverlapping
=== RUN TestAccACMPCACertificateAuthorityDataSource_tags_IgnoreTags_Overlap_DefaultTag
=== PAUSE TestAccACMPCACertificateAuthorityDataSource_tags_IgnoreTags_Overlap_DefaultTag
=== RUN TestAccACMPCACertificateAuthorityDataSource_tags_IgnoreTags_Overlap_ResourceTag
=== PAUSE TestAccACMPCACertificateAuthorityDataSource_tags_IgnoreTags_Overlap_ResourceTag
=== RUN TestAccACMPCACertificateAuthorityDataSource_basic
=== PAUSE TestAccACMPCACertificateAuthorityDataSource_basic
=== RUN TestAccACMPCACertificateAuthorityDataSource_s3ObjectACL
=== PAUSE TestAccACMPCACertificateAuthorityDataSource_s3ObjectACL
=== CONT TestAccACMPCACertificateAuthorityDataSource_tags
=== CONT TestAccACMPCACertificateAuthorityDataSource_tags_IgnoreTags_Overlap_DefaultTag
--- PASS: TestAccACMPCACertificateAuthorityDataSource_tags (14.13s)
=== CONT TestAccACMPCACertificateAuthorityDataSource_tags_EmptyMap
--- PASS: TestAccACMPCACertificateAuthorityDataSource_tags_IgnoreTags_Overlap_DefaultTag (14.52s)
=== CONT TestAccACMPCACertificateAuthorityDataSource_tags_DefaultTags_nonOverlapping
--- PASS: TestAccACMPCACertificateAuthorityDataSource_tags_DefaultTags_nonOverlapping (12.63s)
=== CONT TestAccACMPCACertificateAuthorityDataSource_basic
--- PASS: TestAccACMPCACertificateAuthorityDataSource_tags_EmptyMap (13.04s)
=== CONT TestAccACMPCACertificateAuthorityDataSource_s3ObjectACL
--- PASS: TestAccACMPCACertificateAuthorityDataSource_s3ObjectACL (13.29s)
=== CONT TestAccACMPCACertificateAuthorityDataSource_tags_IgnoreTags_Overlap_ResourceTag
--- PASS: TestAccACMPCACertificateAuthorityDataSource_basic (13.80s)
=== CONT TestAccACMPCACertificateAuthorityDataSource_tags_NullMap
--- PASS: TestAccACMPCACertificateAuthorityDataSource_tags_NullMap (12.04s)
--- PASS: TestAccACMPCACertificateAuthorityDataSource_tags_IgnoreTags_Overlap_ResourceTag (13.42s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/acmpca 59.083s
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 🚀
@maxim-anetac Thanks for the contribution 🎉 👏. |
This functionality has been released in v5.82.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! |
Description
Given that an alternate account shared an ACM PCA with me,
When I tried to retrieve the ACM PCA resource,
I would encounter an AccessDeniedException as the default permission does not allow retrieval of the PCA's CSR.
Relations
Closes #26868.
Closes #28017.