Assignment 4 by JVarshita
Limited Time Offer!
For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!
Q1 – Terraform is known for managing external services very easily and efficiently by managing multiple clouds all together. It is an open-source management infrastructure that helps in enabling cloud safely and predictably create, change, and improve infrastructure of external resources. It is created by Hashicrop. In short, we can configure resources in cloud server.
Q2 – ONE EXAMPLE OF TERRAFORM PROGRAM:
resource “github repo”(#we can use any other repo given) “example” {
name = “var999999”
description = “Any cloudbase given” //any description
visibility= “public”
}
Q3 – terraform init – Used to start working on Terraform configuration
terraform plan – It is useful in creating the execution plan which lets us to edit before real infra.
terraform apply – holds and carries the changes to other resources for the same.
terraform show – Provides a proper output for good understanding.
terraform destroy – To destroy all the objects made previously if of no use.