-
Notifications
You must be signed in to change notification settings - Fork 4k
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
(certificatemanager): DnsValidatedCertificate does not allow you to customize tags on the requested certificate #12382
Comments
…rops for configuring tags on the requested certificate (aws#12382)
…rops for configuring tags on the requested certificate (aws#12382)
@njlynch Any chance this can get looked at again? Would be a huge help for our organization as our Governance team requires certain tags on all resources, and our current workaround is to embed some cli calls post-deploy. |
@bigkraig submitted a PR, but the approach would have required tags to be explicitly added to the @timothy-farestad - Happy to help you -- or any other contributor -- get this merged in. It should be a reasonably small contribution. |
Closes #12382 Attempting to implement the fix suggested in #12382 to allow the DnsValidatedCertificate resource to be taggable. Currently, only the custom lambda that is created is tagged, but the certificate provisioned by the lambda is not tagged. This would allow the lambda to pass tags through to the certificate, too. *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
|
…13990) Closes aws#12382 Attempting to implement the fix suggested in aws#12382 to allow the DnsValidatedCertificate resource to be taggable. Currently, only the custom lambda that is created is tagged, but the certificate provisioned by the lambda is not tagged. This would allow the lambda to pass tags through to the certificate, too. *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Add a
certificateTags
parameter toDnsValidatedCertificateProps
which will configure the Lambda to create tags on the requested certificate.Use Case
We use permission boundaries to control what CDK can create roles for. As DnsValidatedCertificate creates a role for the function that manages the certificate, we need to be able to limit this role using tags to just the managed certificate.
Proposed Solution
Include an
acm.addTagsToCertificate
call in therequestCertificate
function with tags defined inDnsValidatedCertificateProps
.This is a 🚀 Feature Request
The text was updated successfully, but these errors were encountered: