-
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
fix(core): SecretValue.secretsManager fails for tokenized secret-id #16230
Conversation
The example which was provided in the issue can be deployed after this fix. In addition, I tested the change using the following code for const param = new cdk.CfnParameter(this, 'MyParam', {
default: 'foo',
});
const secretValueFoo = cdk.SecretValue.secretsManager(param.valueAsString).toString();
new ssm.StringParameter(this, 'string-parameter-foo', {stringValue: secretValueFoo}); |
924c117
to
ebfd5f2
Compare
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
…ws#16230) `SecretValue.secretsManager` fails if a token is used for `secret-id`. This is caused by a validation which should be skipped for tokenized values. Solved by skipping the validation if token is unresolved. Fixes aws#16166. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
SecretValue.secretsManager
fails if a token is used forsecret-id
. This is caused by a validation which should be skipped for tokenized values.Solved by skipping the validation if token is unresolved.
Fixes #16166.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license