├── .cfnlintrc ├── .checkov.yml ├── .github ├── FUNDING.yml ├── pull-request-template.md └── workflows │ ├── cfn-lint-scan.yml │ ├── checkov-scan.yml │ └── cloudformation-deploy-test.yml ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── images ├── actions-variables.png └── github-title-banner.png ├── parameters └── test │ └── oidc-provider.yml ├── requirements.txt ├── scripts ├── deploy-templates.sh ├── provision-repo.sh └── validate-templates.sh └── templates └── oidc-provider.yml /.cfnlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/.cfnlintrc -------------------------------------------------------------------------------- /.checkov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/.checkov.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: dannysteenman 2 | -------------------------------------------------------------------------------- /.github/pull-request-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/.github/pull-request-template.md -------------------------------------------------------------------------------- /.github/workflows/cfn-lint-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/.github/workflows/cfn-lint-scan.yml -------------------------------------------------------------------------------- /.github/workflows/checkov-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/.github/workflows/checkov-scan.yml -------------------------------------------------------------------------------- /.github/workflows/cloudformation-deploy-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/.github/workflows/cloudformation-deploy-test.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /images/actions-variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/images/actions-variables.png -------------------------------------------------------------------------------- /images/github-title-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/images/github-title-banner.png -------------------------------------------------------------------------------- /parameters/test/oidc-provider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/parameters/test/oidc-provider.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | checkov 2 | cfn-lint 3 | -------------------------------------------------------------------------------- /scripts/deploy-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/scripts/deploy-templates.sh -------------------------------------------------------------------------------- /scripts/provision-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/scripts/provision-repo.sh -------------------------------------------------------------------------------- /scripts/validate-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/scripts/validate-templates.sh -------------------------------------------------------------------------------- /templates/oidc-provider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/towardsthecloud/aws-cloudformation-starter-kit/HEAD/templates/oidc-provider.yml --------------------------------------------------------------------------------