2023-03-01 10:23:16 +08:00

8 lines
224 B
HCL

resource "random_pet" "rand" {}
# The main resource group for this deployment
resource "azurerm_resource_group" "default" {
name = "${var.name}-${var.environment}-rg-${random_pet.rand.id}"
location = var.location
}