Skip to content

Instantly share code, notes, and snippets.

@anuragmathur1
Created September 7, 2017 04:15
Show Gist options
  • Select an option

  • Save anuragmathur1/e5f286a5f370bc8bffd5e76d2b03b2a8 to your computer and use it in GitHub Desktop.

Select an option

Save anuragmathur1/e5f286a5f370bc8bffd5e76d2b03b2a8 to your computer and use it in GitHub Desktop.
Example of creating a cloudformation stack with example parameters
aws cloudformation create-stack \
--stack-name my-stack \
--template-body file:///full-path-to-file/my-stack.template \
--parameters \
ParameterKey=DynaoDbReadCapacity,ParameterValue=2 \
ParameterKey=DynaoDbWriteCapacity,ParameterValue=2 \
ParameterKey=LambdaBucket,ParameterValue=Bucket-name \
--profile=work
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment