Day 4 Assignment – K. Sam Ashray

DevOps

YOUR COSMETIC CARE STARTS HERE

Find the Best Cosmetic Hospitals

Trusted • Curated • Easy

Looking for the right place for a cosmetic procedure? Explore top cosmetic hospitals in one place and choose with confidence.

“Small steps lead to big changes — today is a perfect day to begin.”

Explore Cosmetic Hospitals Compare hospitals, services & options quickly.

✓ Shortlist providers • ✓ Review options • ✓ Take the next step with confidence

1) What is terraform?

Terraform is infrastructure as code tool that is used to define cloud resources and on-premises resources as configuration files that is understandable by human that can be versioned, reuse and shared. It manages an application’s underlying IT infrastructure through programming. It is written in Go programming language.

2) One example terraform program

provider “github” {

token=”github personal access token XXXXXXX”

}

resource “github_repository” “example” {
name = “example”
description = “My awesome codebase”

visibility = “public”
}

3) List of 5 terraform commands and its use

  1. Terraform apply – it executes the actions proposed in a terraform plan.
  2. Terraform plan – creates an execution plan, which let’s us to preview the changes that terraform plans to make to your infrastructure.
  3. Terraform init – it is used to initialize a working directory containing configuration files.
  4. Terraform destroy – terminates resources defined in terraform configuration.
  5. Terraform show – used to provide human readable output from a state or plan file.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x