July 2017
Intermediate to advanced
402 pages
9h 38m
English
We are going to reuse the exact same template we used for staging. In your Terminal, go to the location you used to generate the nodeserver template and then run the same command as before, but this time with the stack name helloworld-production:
$ aws cloudformation create-stack \
--capabilities CAPABILITY_IAM \
--stack-name helloworld-production \
--template-body file://nodeserver.template \
--parameters ParameterKey=KeyPair,ParameterValue=EffectiveDevOpsAWS
We can then run the following command to wait for the stack to be ready:
$ aws cloudformation wait stack-create-complete \
--stack-name helloworld-production
Read now
Unlock full access