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 initGenerate and show an execution plan by running:
terraform planApply the changes required to reach the desired state of the configuration:
terraform applyIf you need to destroy the infrastructure managed by Terraform, run:
terraform destroyFor more details on Terraform commands and configurations, refer to the Terraform documentation.