Balaji Vajjala's Blog

A DevOps Blog from Trenches

01

  • 1.7 Make a change to the infrastructure scripts
    • Learning Objectives
    • Make a change to an infrastructure script
    • Make a change to an infrastructure script and commit to GitHub.

1.7 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.

Make a change to an infrastructure script

Slide1

Make a change to an infrastructure script and commit to GitHub.

  1. From the root directory of your EC2 instance change directory to devopsinthecloud.
  2. Open the test file as shown below.

    “` $ sudo vim target.template

    “`

  3. Make a modification to the contents of the file and save it.

  4. From the root directory of your EC2 instance change directory to devopsinthecloud.
  5. Add the file in Git

    “` $ git add .

    “`

  6. Commit the file to Git

    “` $ git commit -m “Modified infrastructure script”

    “`

  7. Push it to the Git master.

    “` $ git push

    “`