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.
1.What is terraform?
It is an open source infrastructure as code software tool.
this helps to manage the application infrastructure -programming
2.One example terraform program
resource “github_repository” “sample” {name = “example” description = “code” visibility=”public”}
3.List of 5 terraform commands and its use
| terraform init —- initialize a working directory | |
| terraform plan—show changes required and execution plan | |
| terraform apply—-create or update | |
| terraform show—-shows the terraform state or plan | |
| terraform destroy—destroy previously created one |