You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove forceNew for zone and standby_availability_zone of azurerm_postgresql_flexible_server (#13507)
fixes#13443
Symptom:
Currently, TF would recreate this resource when zone and standby_availability_zone is changed.
Expected behavior:
After confirmed with service team, TF shouldn't recreate this resource when zone and standby_availability_zone is changed, which means failover is triggered once zone and standby_availability_zone is changed and failover between zone and standby_availability_zone is only supported when their values are exchanged.
Failover is implemented by separate API not update API.
Copy file name to clipboardexpand all lines: website/docs/r/postgresql_flexible_server.html.markdown
+4-2
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,9 @@ The following arguments are supported:
91
91
92
92
*`administrator_password` - (Optional) The Password associated with the `administrator_login` for the PostgreSQL Flexible Server. Required when `create_mode` is `Default`.
93
93
94
-
*`zone` - (Optional) The availability zone of the PostgreSQL Flexible Server. Possible values are `1`, `2` and `3`. Changing this forces a new PostgreSQL Flexible Server to be created.
94
+
*`zone` - (Optional) The Availability Zone of the PostgreSQL Flexible Server. Possible values are `1`, `2` and `3`.
95
+
96
+
~> **NOTE:** The Availability Zones available would change per the region.
95
97
96
98
*`backup_retention_days` - (Optional) The backup retention days for the PostgreSQL Flexible Server. Possible values are between `7` and `35` days.
97
99
@@ -135,7 +137,7 @@ A `high_availability` block supports the following:
135
137
136
138
*`mode` - (Required) The high availability mode for the PostgreSQL Flexible Server. The only possible value is `ZoneRedundant`.
137
139
138
-
*`standby_availability_zone` - (Optional) The availability zone of the standby Flexible Server. Possible values are `1`, `2` and `3`.
140
+
*`standby_availability_zone` - (Optional) The Availability Zone of the standby Flexible Server. Possible values are `1`, `2` and `3`.
0 commit comments