Sign in
third-party-mirror
/
terraform-provider-random
/
736dceb59e33c1e24053129a3bd9f56e7f46e9d1
/
.
/
v3.6.0
/
examples
/
resources
/
random_uuid
/
resource.tf
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"
}