-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ebccdf
commit 09792a5
Showing
3 changed files
with
65 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# REQUIRED SETTINGS: | ||
StackName: <string> | ||
Template: <local file path or s3 path> | ||
# optionally you can use the yaml pre-processor by prepending 'render:' to the filename | ||
# Template: render:<local file path or s3 path> | ||
|
||
# OPTIONAL SETTINGS: | ||
# Region: <aws region name> | ||
# Profile: <aws profile name> | ||
|
||
# aws tags to apply to the stack | ||
Tags: | ||
# owner: <your name> | ||
# environment: development | ||
# project: <your project> | ||
# lifetime: short | ||
|
||
# stack parameters | ||
Parameters: | ||
# key1: value | ||
# key2: value | ||
|
||
# optional list. *Preferably empty* | ||
Capabilities: | ||
# - CAPABILITY_IAM | ||
# - CAPABILITY_NAMED_IAM | ||
|
||
NotificationARNs: | ||
# - <sns arn> | ||
|
||
# CloudFormation ServiceRole | ||
# RoleARN: arn:aws:iam::<acount>:role/<rolename> | ||
|
||
# TimeoutInMinutes: <number> | ||
|
||
# OnFailure defaults to ROLLBACK | ||
# OnFailure: 'ROLLBACK' | 'DELETE' | 'DO_NOTHING' | ||
|
||
# StackPolicy: <local file path or s3 path> | ||
|
||
# see http://docs.aws.amazon.com/cli/latest/reference/cloudformation/create-stack.html#options | ||
# ResourceTypes: <list of aws resource types allowed in the template> | ||
|
||
# shell commands to run prior the cfn stack operation | ||
# CommandsBefore: | ||
# - make build # for example |