Terraform
Terraform https://www.greatminditacademy.com/ Terraform introduction Featured snippet from the web HashiCorp Terraform is an infrastructure as code tool that lets you define both cloud and on-prem resources in human-readable configuration files that you can version, reuse, and share . You can then use a consistent workflow to provision and manage all of your infrastructure throughout its lifecycle. How does Terraform work? Terraform creates and manages resources on cloud platforms and other services through their application programming interfaces (APIs). Providers enable Terraform to work with virtually any platform or service with an accessible API. Advantages of Terraform It supports multiple providers it is idempodent can split configuration into multiple files within working directory manually created existing resources can be able to import to terraform can perform dryrun (plan) Important Commands of Terraform Terraform init: It starts the working directory con...