Day-4 Assignment

DevOps

MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

1) What is terraform?

A) Terraform is a tool which is used to write a code for infrastructure and it allows to programmatically provision the physical resources an application requires to run. This helps to manages the application infrastructure through programming.

2)  One example terraform program.

A)

resource “github_repository” “Sample” {
name = “Proj1”
description = “My first project”

visibility = “public”
}

provider github

{

token=”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”

owner=”Organization”

}

3) List of 5 terraform commands and its use

A)

  1. terraform init – It is used to initialize the directory which consists of configuration files.
  2. terraform plan – It checks the configuration to determine the desired state of all the resources it declares.
  3. terraform apply – It carries out the planned changes to resource using the same type of infrastructure providers API.
  4. terraform destroy – It destroys all the resources being managed by current directory.
  5. terraform show – It provides an output of plan file in understandable manner.
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