6 lines
156 B
HCL
6 lines
156 B
HCL
resource "random_uuid" "uuid" {}
|
|
|
|
resource "azurerm_resource_group" "rg" {
|
|
name = "rg-hello-tf-${random_uuid.uuid.result}"
|
|
location = var.location
|
|
} |