Created
September 7, 2017 04:15
-
-
Save anuragmathur1/e5f286a5f370bc8bffd5e76d2b03b2a8 to your computer and use it in GitHub Desktop.
Example of creating a cloudformation stack with example parameters
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
| 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