This repository contains Terraform configurations for managing infrastructure. Replace the resource group mame with whatever you want in variables.tf
Follow the steps below to initialize, plan, and apply your Terraform configurations.
Run the following command to initialize the working directory containing Terraform configuration files:
terraform init
Generate and show an execution plan by running:
terraform plan
Apply the changes required to reach the desired state of the configuration:
terraform apply
If you need to destroy the infrastructure managed by Terraform, run:
terraform destroy
For more details on Terraform commands and configurations, refer to the Terraform documentation.