├── .gitignore ├── README.md ├── cicd ├── README.md ├── codebuild │ ├── README.md │ ├── codebuild-source-credential.yml │ └── codebuild-with-webhook.yml ├── fargate │ ├── README.md │ └── serverless-container-api-cicd.yml └── lambda │ ├── README.md │ └── serverless-function-api-cicd.yml ├── cloudwatch └── alarms │ └── metric-math.yml │ ├── README.md │ └── metric-math-conditional.yml ├── dynamodb ├── README.md ├── basic │ ├── README.md │ └── ddb.yml └── global-table │ ├── README.md │ └── global-ddb.yml ├── fargate ├── README.md ├── auto-scaling │ ├── README.md │ └── auto-scaling-service.yml ├── basic │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── buildspec.yml │ ├── package.json │ ├── serverless-container-api.yml │ └── src │ │ └── index.js └── ecs-cluster.yml ├── iam ├── README.md └── basic │ ├── README.md │ ├── iam-role.yml │ └── iam-user.yml ├── lambda ├── README.md ├── basic │ ├── README.md │ └── serverless-function-api.yml ├── canary │ ├── README.md │ ├── canary.js │ ├── canary.yml │ └── package.json └── kinesis │ ├── README.md │ └── data-transformation.yml ├── rds ├── README.md └── serverless │ ├── README.md │ └── serverless-rds-cluster.yml ├── s3 ├── README.md └── versioned-bucket.yml ├── scripts ├── README.md ├── deploy-to-lambda.sh └── push-to-s3.sh ├── secretsmanager ├── README.md └── whitelisted-secret.yml └── vpc ├── README.md └── basic ├── README.md └── vpc.yml /.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | node_modules/ 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/README.md -------------------------------------------------------------------------------- /cicd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/cicd/README.md -------------------------------------------------------------------------------- /cicd/codebuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/cicd/codebuild/README.md -------------------------------------------------------------------------------- /cicd/codebuild/codebuild-source-credential.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/cicd/codebuild/codebuild-source-credential.yml -------------------------------------------------------------------------------- /cicd/codebuild/codebuild-with-webhook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/cicd/codebuild/codebuild-with-webhook.yml -------------------------------------------------------------------------------- /cicd/fargate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/cicd/fargate/README.md -------------------------------------------------------------------------------- /cicd/fargate/serverless-container-api-cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/cicd/fargate/serverless-container-api-cicd.yml -------------------------------------------------------------------------------- /cicd/lambda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/cicd/lambda/README.md -------------------------------------------------------------------------------- /cicd/lambda/serverless-function-api-cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/cicd/lambda/serverless-function-api-cicd.yml -------------------------------------------------------------------------------- /cloudwatch/alarms/metric-math.yml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/cloudwatch/alarms/metric-math.yml/README.md -------------------------------------------------------------------------------- /cloudwatch/alarms/metric-math.yml/metric-math-conditional.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/cloudwatch/alarms/metric-math.yml/metric-math-conditional.yml -------------------------------------------------------------------------------- /dynamodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/dynamodb/README.md -------------------------------------------------------------------------------- /dynamodb/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/dynamodb/basic/README.md -------------------------------------------------------------------------------- /dynamodb/basic/ddb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/dynamodb/basic/ddb.yml -------------------------------------------------------------------------------- /dynamodb/global-table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/dynamodb/global-table/README.md -------------------------------------------------------------------------------- /dynamodb/global-table/global-ddb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/dynamodb/global-table/global-ddb.yml -------------------------------------------------------------------------------- /fargate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/fargate/README.md -------------------------------------------------------------------------------- /fargate/auto-scaling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/fargate/auto-scaling/README.md -------------------------------------------------------------------------------- /fargate/auto-scaling/auto-scaling-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/fargate/auto-scaling/auto-scaling-service.yml -------------------------------------------------------------------------------- /fargate/basic/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /fargate/basic/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/fargate/basic/Dockerfile -------------------------------------------------------------------------------- /fargate/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/fargate/basic/README.md -------------------------------------------------------------------------------- /fargate/basic/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/fargate/basic/buildspec.yml -------------------------------------------------------------------------------- /fargate/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/fargate/basic/package.json -------------------------------------------------------------------------------- /fargate/basic/serverless-container-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/fargate/basic/serverless-container-api.yml -------------------------------------------------------------------------------- /fargate/basic/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/fargate/basic/src/index.js -------------------------------------------------------------------------------- /fargate/ecs-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/fargate/ecs-cluster.yml -------------------------------------------------------------------------------- /iam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/iam/README.md -------------------------------------------------------------------------------- /iam/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/iam/basic/README.md -------------------------------------------------------------------------------- /iam/basic/iam-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/iam/basic/iam-role.yml -------------------------------------------------------------------------------- /iam/basic/iam-user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/iam/basic/iam-user.yml -------------------------------------------------------------------------------- /lambda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/lambda/README.md -------------------------------------------------------------------------------- /lambda/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/lambda/basic/README.md -------------------------------------------------------------------------------- /lambda/basic/serverless-function-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/lambda/basic/serverless-function-api.yml -------------------------------------------------------------------------------- /lambda/canary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/lambda/canary/README.md -------------------------------------------------------------------------------- /lambda/canary/canary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/lambda/canary/canary.js -------------------------------------------------------------------------------- /lambda/canary/canary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/lambda/canary/canary.yml -------------------------------------------------------------------------------- /lambda/canary/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/lambda/canary/package.json -------------------------------------------------------------------------------- /lambda/kinesis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/lambda/kinesis/README.md -------------------------------------------------------------------------------- /lambda/kinesis/data-transformation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/lambda/kinesis/data-transformation.yml -------------------------------------------------------------------------------- /rds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/rds/README.md -------------------------------------------------------------------------------- /rds/serverless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/rds/serverless/README.md -------------------------------------------------------------------------------- /rds/serverless/serverless-rds-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/rds/serverless/serverless-rds-cluster.yml -------------------------------------------------------------------------------- /s3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/s3/README.md -------------------------------------------------------------------------------- /s3/versioned-bucket.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/s3/versioned-bucket.yml -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/deploy-to-lambda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/scripts/deploy-to-lambda.sh -------------------------------------------------------------------------------- /scripts/push-to-s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/scripts/push-to-s3.sh -------------------------------------------------------------------------------- /secretsmanager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/secretsmanager/README.md -------------------------------------------------------------------------------- /secretsmanager/whitelisted-secret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/secretsmanager/whitelisted-secret.yml -------------------------------------------------------------------------------- /vpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/vpc/README.md -------------------------------------------------------------------------------- /vpc/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/vpc/basic/README.md -------------------------------------------------------------------------------- /vpc/basic/vpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasstep/aws-cloudformation-reference/HEAD/vpc/basic/vpc.yml --------------------------------------------------------------------------------