
* add random string to resource group name to avoid concurrent test issue * change region to obtain quota --------- Co-authored-by: zjhe <hezijie@microsoft.com>
15 lines
303 B
HCL
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
|
|
}
|