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>
This commit is contained in:
lonegunmanb 2023-03-14 07:24:55 +08:00 committed by GitHub
parent 3d1a3532c8
commit 513af170ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
resource "random_pet" "rg" {}
resource "azurerm_resource_group" "my_resource_group" {
name = var.resource_group_name
name = "${var.resource_group_name}-${random_pet.rg.id}"
location = var.location
}

View File

@ -1,6 +1,6 @@
variable "location" {
type = string
default = "westus2"
default = "eastus"
}
variable "resource_group_name" {