├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── rfc-tracking-issue.md └── pull_request_template.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── NOTICE ├── README.md └── RFCs ├── 0000-template.md ├── 0009-Fn::ForEach.md ├── 0011-DeletionPolicy.md ├── 0014-ToJsonString.md ├── 0043-Fn::FindInMap enhancements (default value and intrinsic functions).md └── 0070-Fn::Length.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/cfn-language-discussion/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/cfn-language-discussion/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/rfc-tracking-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/cfn-language-discussion/HEAD/.github/ISSUE_TEMPLATE/rfc-tracking-issue.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/cfn-language-discussion/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/cfn-language-discussion/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/cfn-language-discussion/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/cfn-language-discussion/HEAD/README.md -------------------------------------------------------------------------------- /RFCs/0000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/cfn-language-discussion/HEAD/RFCs/0000-template.md -------------------------------------------------------------------------------- /RFCs/0009-Fn::ForEach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/cfn-language-discussion/HEAD/RFCs/0009-Fn::ForEach.md -------------------------------------------------------------------------------- /RFCs/0011-DeletionPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/cfn-language-discussion/HEAD/RFCs/0011-DeletionPolicy.md -------------------------------------------------------------------------------- /RFCs/0014-ToJsonString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/cfn-language-discussion/HEAD/RFCs/0014-ToJsonString.md -------------------------------------------------------------------------------- /RFCs/0043-Fn::FindInMap enhancements (default value and intrinsic functions).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/cfn-language-discussion/HEAD/RFCs/0043-Fn::FindInMap enhancements (default value and intrinsic functions).md -------------------------------------------------------------------------------- /RFCs/0070-Fn::Length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/cfn-language-discussion/HEAD/RFCs/0070-Fn::Length.md --------------------------------------------------------------------------------