11 lines
234 B
HCL

resource "random_uuid" "uuid" {}
resource "azurerm_resource_group" "rg" {
name = "rg-hello-tf-${random_uuid.uuid.result}"
location = var.location
tags = {
Environment = "dev"
Application = "Azure Compliance"
}
}