Terraform scripts
Install terraform https://developer.hashicorp.com/terraform/downloads
extract files and copy location of terraform.exe open environment variables and paste in path
To Initialize
$ terraform initTo execute dry run
$ terraform planExecute code
$ terraform applySkip the approval
$ terraform apply -auto-approveTo destroy everything that is created
$ terraform destroy -auto-approveShows the info about the resources we deployed
$ terraform showIt will show the plan to destroy
$ terraform plan -destroyyou'll get help on the plan command
$ terraform -h planformat your code
$ terraform fmtshow which providers are required by a configuration
$ terraform providersshow which version
$ terraform -version