Kendra Neil
Kendra Neil
Testing this time from a branch instead of directly to our repository. Initially making this 'fix' so it will fail the linter. ---- ### All Submissions: * [ ] Have...
### Overview The AWS SDK V2 is being deprecated. This is a tracking task to remove all uses of V2 and upgrade to V3 across the board. ### Implementation N/A...
Fixes # By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
This is the schema we use to translate CloudForamation templates into CDK apps. This change pulls in daily updates. This should not be merged until the GitHub action is fully...
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-foreach.html
This change reflects the move of cdk-assets from the monorep to a standalone library. The build also pulled in some unrelated changes to the THIRD_PARTY_LICENSES files. This is to be...
### Checklist - [ ] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the...
Fixes https://github.com/cdklabs/cdk-from-cfn/issues/771 By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
Example: ``` { "AWSTemplateFormatVersion": "2010-09-09", "Conditions": { "IsProduction": { "Fn::Equals": [ { "Ref": "Environment" }, "prod" ] }, "HasDatabase": { "Fn::Equals": [ { "Ref": "DatabaseType" }, "mysql" ] }, "UseEncryption":...
No language properly handles the following: ``` "UserData": { "Fn::Base64": { "Fn::Sub": [ "#!/bin/bash\n\nexec > >(tee /var/log/user-data.log|logger -t user-data -s 2>/dev/console) 2>&1\necho `date +'%F %R:%S'` \"INFO: Logging Setup\" >&2\n\necho \"Setting...