-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
refactor(cx): typo in decryption policy #23298
Conversation
Decryption policy in contains a typo. In few places non-existing word `Descryption` is used. It is confusing, because it could mean either `Decryption` or `Description`. This resolves this by changing it to `Decryption`.
Thanks @kamil-forys that's very unfortunate because |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
@@ -63,7 +63,7 @@ The following json shows the current recommended set of flags, as `cdk init` wou | |||
"@aws-cdk/core:validateSnapshotRemovalPolicy": true, | |||
"@aws-cdk/aws-codepipeline:crossAccountKeyAliasStackSafeResourceName": true, | |||
"@aws-cdk/aws-s3:createDefaultLoggingPolicy": true, | |||
"@aws-cdk/aws-sns-subscriptions:restrictSqsDescryption": true, | |||
"@aws-cdk/aws-sns-subscriptions:restrictSqsDecryption": true, |
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.
We can't do that really =/
Closing due to inability of changing existing feature flag. |
@kamil-forys, please consider adding an additional feature flag for the same thing, but with the correct spelling. if both the old and new flags are present and set to different values; you could error instructing people to remove one. |
Decryption policy in cx contains a typo.
In few places non-existing word
Descryption
is used. It is confusing, because it could mean eitherDecryption
orDescription
. This resolves this by changing it toDecryption
.All Submissions:
Adding new Construct Runtime Dependencies:
New Features
yarn integ
to deploy the infrastructure and generate the snapshot (i.e.yarn integ
without--dry-run
)?By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license