Skip to content

Instantly share code, notes, and snippets.

View sunds's full-sized avatar

David Sundstrom sunds

  • Austin Texas USA
View GitHub Profile
@sunds
sunds / Health
Created April 16, 2018 15:53
AWS Fargate with System Manager Parameters for secrets. Running a Node.js container.
#
# 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:
@sunds
sunds / environment.yaml
Created January 8, 2018 17:43
AWS Fargate ECS cloudformation templete
#
# 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:
#