├── .gitchangelog.rc ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── workflows │ └── main.yml ├── .gitignore ├── .vscode-test ├── complete-resource-specification.json └── short-resource-specification.json ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── images ├── cfn-snippets-extension-example.gif ├── cfn-snippets-extension-icon.png └── cfn-snippets-hover-example.gif ├── out └── README.md ├── package.json ├── snippets ├── json-cfn-resource-types.json ├── json-general.json ├── raw-cfn-resources-output.json ├── yaml-cfn-resource-types.json ├── yaml-condition-functions.json ├── yaml-general.json ├── yaml-intrinsic-functions.json ├── yaml-parameter-types.json └── yaml-sam-resource-types.json ├── src ├── check-cfn-resource-spec-hash.py ├── create-raw-cfn-resources-output.py ├── current-cfn-spec-hash ├── extension.ts ├── requirements.txt ├── update-and-parse-feed.py └── update-cfn-resource-snippets.py └── tsconfig.json /.gitchangelog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/.gitchangelog.rc -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: dannysteenman 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode-test/complete-resource-specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/.vscode-test/complete-resource-specification.json -------------------------------------------------------------------------------- /.vscode-test/short-resource-specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/.vscode-test/short-resource-specification.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/README.md -------------------------------------------------------------------------------- /images/cfn-snippets-extension-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/images/cfn-snippets-extension-example.gif -------------------------------------------------------------------------------- /images/cfn-snippets-extension-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/images/cfn-snippets-extension-icon.png -------------------------------------------------------------------------------- /images/cfn-snippets-hover-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/images/cfn-snippets-hover-example.gif -------------------------------------------------------------------------------- /out/README.md: -------------------------------------------------------------------------------- 1 | # out folder for extension 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/package.json -------------------------------------------------------------------------------- /snippets/json-cfn-resource-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/snippets/json-cfn-resource-types.json -------------------------------------------------------------------------------- /snippets/json-general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/snippets/json-general.json -------------------------------------------------------------------------------- /snippets/raw-cfn-resources-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/snippets/raw-cfn-resources-output.json -------------------------------------------------------------------------------- /snippets/yaml-cfn-resource-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/snippets/yaml-cfn-resource-types.json -------------------------------------------------------------------------------- /snippets/yaml-condition-functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/snippets/yaml-condition-functions.json -------------------------------------------------------------------------------- /snippets/yaml-general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/snippets/yaml-general.json -------------------------------------------------------------------------------- /snippets/yaml-intrinsic-functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/snippets/yaml-intrinsic-functions.json -------------------------------------------------------------------------------- /snippets/yaml-parameter-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/snippets/yaml-parameter-types.json -------------------------------------------------------------------------------- /snippets/yaml-sam-resource-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/snippets/yaml-sam-resource-types.json -------------------------------------------------------------------------------- /src/check-cfn-resource-spec-hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/src/check-cfn-resource-spec-hash.py -------------------------------------------------------------------------------- /src/create-raw-cfn-resources-output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/src/create-raw-cfn-resources-output.py -------------------------------------------------------------------------------- /src/current-cfn-spec-hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/src/current-cfn-spec-hash -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /src/update-and-parse-feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/src/update-and-parse-feed.py -------------------------------------------------------------------------------- /src/update-cfn-resource-snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/src/update-cfn-resource-snippets.py -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/vscode-cloudformation-snippets/HEAD/tsconfig.json --------------------------------------------------------------------------------