Skip to content

Instantly share code, notes, and snippets.

View baliame's full-sized avatar

Ákos Tóth baliame

  • Devertix
  • Hungary
View GitHub Profile
@baliame
baliame / cf-example-stack.yaml
Created March 29, 2018 10:03
Cloudformation basics blog post @ cheppers.com
---
AWSTemplateFormatVersion: "2010-09-09"
Parameters:
DBPassword:
Type: String
NoEcho: true # Specifies that this string should never be printed on the interface or through the API.
AllowedPattern: ^[a-zA-Z0-9_]*$ # Provided strings must match this regex.
MinLength: 8