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?
Terraform is a provisioning declarative tool that based on infrastructure as a code paradigm. It helps to evolve the infrastructure safely and predictably. Terraform is a multiple purpose composition tool. It composes the multi tiers and a plugin based architecture model. It is a open source and backed by hashicorp company and hashi tao.
2. one example terraform program
resource “aws_instance” “demo” {
ami = “ami-00831fc7c1e3ddc60”
instance_type = “t2.micro”
tags = {
name = “Demo System”
}
}
3. List 5 terraform commands and its use
import – import existing infrastructure into terraform.
apply – build or changes infrastructure.
get – download and install modules for the configuration
validate – check wheather the configuration is valid.
plan – show changes required by the current configuration.