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.
What is terraform?
Hashicorp is an organisation or company that provides us Terraform platform.Terraform is an infrastructure as code tool that lets us understand or work with both cloud and also some of the readable configuration files that we can edit , plan,apply changes,version and reuse and also share.
One example terraform program
resource “github_repository” “example” {
name = “example9999999”
description = “My awesome codebase hey”
visibility = “public”
}
provider “github” {
token = “xxxxxxx”
owner = “xxxxxxx”
}
List 5 commands in terraform and their uses
1.vi terraform.tf
2.terraform init
3.terraform plan
4.terraform apply
5.terraform destroy