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 private_dns_zone_id = azurerm_private_dns_zone.default.id
sku_name = "GP_Standard_D2ds_v4" sku_name = "GP_Standard_D2ds_v4"
version = "8.0.21" version = "8.0.21"
zone = "1"
high_availability { high_availability {
mode = "ZoneRedundant" mode = "SameZone"
standby_availability_zone = "2"
} }
maintenance_window { maintenance_window {
day_of_week = 0 day_of_week = 0

View File

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