01.09
- 1.9 Make a change to the infrastructure scripts
- Learning Objectives
- Infrastructure
- EXERCISE: Make a change to an infrastructure script and commit to GitHub.
- EXERCISE: Make a change to an infrastructure script and commit to GitHub (OPTIONAL).
1.9 Make a change to the infrastructure scripts
Learning Objectives
By the end of this lesson you will be able to:
- Change an existing infrastructure script and commit it to GitHub.
Infrastructure
EXERCISE: Make a change to an infrastructure script and commit to GitHub.
- From the AWSCLI instance, go to the infrastructure directory of the continuous_integration_example project.
Open the CloudFormation template as shown below.
“` $ sudo vim target.template
“`
Make a modification to the contents of the file and save it.
Add the file in Git
“` $ git add target.template
“`
Commit the file to Git
“` $ git commit -m “Modified infrastructure script”
“`
Push it to the Git master.
“` $ git push
“`
EXERCISE: Make a change to an infrastructure script and commit to GitHub (OPTIONAL).
- From the AWSCLI instance, go to the templates directory of the devopsinthecloud project.
Open the test file as shown below.
“` $ sudo vim target.template
“`
Make a modification to the contents of the file and save it.
Add the file in Git
“` $ git add target.template
“`
Commit the file to Git
“` $ git commit -m “Modified infrastructure script”
“`
Push it to the Git master.
“` $ git push
“`