This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# KMS template used to create SSM keys for all environments. | |
# From: https://typicalrunt.me/2017/04/07/storing-secrets-with-aws-parameterstore/ | |
# | |
# | |
# | |
AWSTemplateFormatVersion: "2010-09-09" | |
Description: "KMS key for secrets management (see Parameters for more info)" | |
Parameters: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Sample CloudFormation template for AWS Fargate. | |
# | |
# This template builds a new VPC with two public subnets plus an internet gateway and associated security groups. | |
# It adds an application load balancer with SSL using a certificate of your specification (Use AWS certificate manager to issue) | |
# It then configures an ECS service running a docker image. This example used the AWS ECS sample application (a small PHP app). | |
# You would replace that one with yours. | |
# | |
# Before you start: | |
# |