try to fix broken test

This commit is contained in:
zjhe 2024-01-08 16:23:50 +08:00 committed by lonegunmanb
parent feaac00db9
commit eb44e5afbe
2 changed files with 2 additions and 4 deletions

View File

@ -88,11 +88,9 @@ resource "azurerm_mysql_flexible_server" "default" {
private_dns_zone_id = azurerm_private_dns_zone.default.id
sku_name = "GP_Standard_D2ds_v4"
version = "8.0.21"
zone = "1"
high_availability {
mode = "ZoneRedundant"
standby_availability_zone = "2"
mode = "SameZone"
}
maintenance_window {
day_of_week = 0

View File

@ -1,6 +1,6 @@
variable "resource_group_location" {
type = string
default = "eastus"
default = "westeurope"
description = "Location of the resource group."
}