-
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
aws-kms: missing sign and verify IAM roles #23185
Comments
Some extra information: https://github.com/aws/aws-cdk/blob/main/packages/%40aws-cdk/aws-kms/lib/key.ts#L14-L63 functions should be implemented here I think |
Thanks for the request and the links to documentation @jonasclaes, I see why this would be valuable to have 🙂 You can work around this by adding to the policy documents you wish to modify, or at the least you would be able to use escape hatches to modify any existing policies as well if they don't meet your needs I am marking this issue as p2, which means that we are unable to work on this immediately. We use +1s to help prioritize our work, and are happy to revaluate this issue based on community feedback. You can reach out to the cdk.dev community on Slack to solicit support for reprioritization. Check out our contributing guide if you're interested in contributing yourself - there's a low chance the team will be able to address this soon but we'll try to review a PR |
Comments on closed issues and PRs are hard for our team to see. |
1 similar comment
Comments on closed issues and PRs are hard for our team to see. |
Describe the feature
The AWS KMS service has support for asymmetric keys.
When you want to sign or verify a piece of data against one of these keys, you need access to kms:Sign and/or kms:Verify.
These methods are not implemented at the moment.
Use Case
Signing of data and verifying of data using the AWS KMS service.
Proposed Solution
The
grantSign
,grantVerify
andgrantSignVerify
methods are implemented in the same way as the currentgrantEncrypt
,grantDecrypt
andgrantEncryptDecrypt
methods.Other Information
No response
Acknowledgements
CDK version used
2.53.0
Environment details (OS name and version, etc.)
Ubuntu 22.04.1 LTS
The text was updated successfully, but these errors were encountered: