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.
Terraform is one of the most popular Infrastructure-as-code (IaC) tool, used by DevOps teams to automate infrastructure tasks. It is used to automate the provisioning of your cloud resources. Terraform is an open-source, cloud-agnostic provisioning tool developed by HashiCorp and written in GO language.
 One example terraform program
variable “include_ec2_instance”
{ type = bool default = true
} resource “aws_instance” “example” {
count = var.include_ec2_instance ? 1 : 0 # (other resource arguments…) }
output “instance_ip_address” { value = one(aws_instance.example[*].private_ip) }
List of 5 terraform commands and its us
terraform init :Â Prepares a working directory that holds a configuration or checks out a working directory from a version control system.
terraform get :Â Downloads and updates modules defined in the root module.
terraform workspace : Depending on the specific workspace command — list, select, new, delete or show — this lists available workspaces, chooses a particular option, creates a workspace, deletes a selected workspace or displays the current one.
terraform plan : Creates an execution workflow, also called a plan. When this command runs, it reads the state of remote objects with terraform refresh, identifies the differences between the prior and desired states and lists a set of changes that will synchronize the remote objects with the desired configuration.
terraform apply :Â Executes the actions created from a Terraform plan.