lonegunmanb 3cc146daba
101-front-door-premium-storage-blobs-private-link (#190)
Co-authored-by: zjhe <hezijie@microsoft.com>
2023-03-14 07:24:22 +08:00

15 lines
315 B
HCL

resource "random_pet" "rg" {}
resource "azurerm_resource_group" "my_resource_group" {
name = "${var.resource_group_name}-${random_pet.rg.id}"
location = var.location
}
resource "random_id" "storage_account_name" {
byte_length = 8
}
resource "random_id" "front_door_endpoint_name" {
byte_length = 8
}