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:
parent
3d1a3532c8
commit
513af170ca
@ -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
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
variable "location" {
|
||||
type = string
|
||||
default = "westus2"
|
||||
default = "eastus"
|
||||
}
|
||||
|
||||
variable "resource_group_name" {
|
||||
|
Loading…
x
Reference in New Issue
Block a user