20 lines
311 B
HCL
20 lines
311 B
HCL
terraform {
|
|
|
|
required_version = ">=0.12"
|
|
|
|
required_providers {
|
|
azurerm = {
|
|
source = "hashicorp/azurerm"
|
|
version = "~>2.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "azurerm" {
|
|
features {}
|
|
}
|
|
|
|
resource "azurerm_resource_group" "rg" {
|
|
name = var.resource_group_name
|
|
location = var.resource_group_location
|
|
} |