July 2017
Intermediate to advanced
402 pages
9h 38m
English
As before, we are going to launch our instance using CloudFormation. Note that we are calling this first stack helloworld-staging. We will first look at CodeDeploy as a way to deploy our code to a staging environment. We will use this name in CodeDeploy as a way to target the deployments to that specific stack:
$ aws cloudformation create-stack \
--capabilities CAPABILITY_IAM \
--stack-name helloworld-staging \
--template-body file://nodeserver-cf.template \
--parameters ParameterKey=KeyPair,ParameterValue=EffectiveDevOpsAWS
In a few minutes, our instance will be ready.
We are at an important point in our DevOps transformation. Now that we have created very generic nodejs web servers with the ability to deploy ...
Read now
Unlock full access