Last active
October 5, 2017 16:22
-
-
Save elerch/a8303c92638bce72e6fedd5c8848e140 to your computer and use it in GitHub Desktop.
Useful shell for starting off a yaml CloudFormation template
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
AWSTemplateFormatVersion: '2010-09-09' | |
Parameters: | |
# Bucket: | |
# Type: String | |
# Default: emil | |
# Description: Bucket name holding source code for lambda functions | |
#Mappings: | |
#Conditions: | |
Resources: | |
MyResource: | |
Type: AWS::... | |
Condition: | |
Properties: | |
#Outputs: | |
# MyResource: | |
# Description: Something important | |
# Value: !Sub MorethanLikely | |
# Export: | |
# Name: !Sub ${AWS::StackName}:MyBigthing:AttributeICareAbout |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment