blob: 87ba531f7b9b49ba0f07f0cd763cf1785916ead6 [file] [log] [blame]
# The following example shows how to generate a unique name for an Azure Resource Group.
resource "random_uuid" "test" {
}
resource "azurerm_resource_group" "test" {
name = "${random_uuid.test.result}-rg"
location = "Central US"
}