lonegunmanb 513af170ca
Fix 101-front-door-standard-premium (#189)
* add random string to resource group name to avoid concurrent test issue

* change region to obtain quota

---------

Co-authored-by: zjhe <hezijie@microsoft.com>
2023-03-14 07:24:55 +08:00

15 lines
303 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" "app_name" {
byte_length = 8
}
resource "random_id" "front_door_endpoint_name" {
byte_length = 8
}