Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add high_availability_enabled gpd-pgflex weu #2657

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/domains/gps-common/03_postgresql_gpd_db.tf
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ module "postgres_flexible_server_private_db" {
create_mode = null // the update of this argument triggers a replace
geo_redundant_backup_enabled = var.pgres_flex_params.geo_redundant_backup_enabled

high_availability_enabled = false # var.pgres_flex_params.high_availability_enabled # NEWGPD-DB : DEPRECATED force to false
high_availability_enabled = var.pgres_flex_params.high_availability_enabled
standby_availability_zone = var.pgres_flex_params.standby_availability_zone
pgbouncer_enabled = var.pgres_flex_params.pgbouncer_enabled

Expand Down
Loading