Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.75 KB

File metadata and controls

39 lines (28 loc) · 1.75 KB

Terraform Template - Azure Resource Group

Costa Rica

GitHub brown9804

Last updated: 2026-02-09


This template contains Terraform configurations to create and manage an Azure Resource Group. Below is a description of the files and the variables used in this template.

File Descriptions

  • main.tf: Contains the main configuration for creating the Azure Resource Group.
  • variables.tf: Defines the input variables used in the Terraform configuration.
  • provider.tf: Configures the Azure provider to interact with Azure resources.
  • terraform.tfvars: Provides default values for the variables defined in variables.tf.
  • outputs.tf: Defines the outputs of the Terraform configuration, such as the resource group name and location.

Variables

Below is a list of variables used in this template, their expected values, types, and examples:

Variable Name Description Type Example Value
resource_group_name The name of the Azure Resource Group to create. string "my-resource-group"
location The Azure region where the Resource Group will be created. string "East US"
environment The environment for the Resource Group (e.g., dev, prod). string "dev"
enable_logging Whether to enable logging for the Resource Group. bool true
tags A map of tags to assign to the Resource Group. map { "env": "dev" }
Total views

Refresh Date: 2026-02-10