From 09026393f0e184540e870496530fd519e5757ded Mon Sep 17 00:00:00 2001 From: Ruwin Ratnayake Date: Tue, 6 Aug 2024 09:02:04 +0530 Subject: [PATCH] Change postgre sql server high availability standby availability zone variable type to number --- modules/azurerm/PostgreSQL-Flexible-Server/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/azurerm/PostgreSQL-Flexible-Server/variables.tf b/modules/azurerm/PostgreSQL-Flexible-Server/variables.tf index 10e22404..5ee2a7af 100644 --- a/modules/azurerm/PostgreSQL-Flexible-Server/variables.tf +++ b/modules/azurerm/PostgreSQL-Flexible-Server/variables.tf @@ -128,5 +128,5 @@ variable "high_availability_mode" { variable "high_availability_standby_availability_zone" { default = null description = "Specifies the Availability Zone in which the standby Flexible Server should be located." - type = any + type = number }