Skip to content

Commit

Permalink
Set postgres wal_level to logical (#1454)
Browse files Browse the repository at this point in the history
  • Loading branch information
gunndabad authored Aug 8, 2024
1 parent 7900f8c commit 4449a64
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions terraform/aks/databases.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,9 @@ module "postgres" {
azure_sku_name = var.postgres_flexible_server_sku
azure_enable_high_availability = var.postgres_enable_high_availability
}

resource "azurerm_postgresql_flexible_server_configuration" "wal_level" {
name = "wal_level"
server_id = module.postgres.azure_server_id
value = "logical"
}

0 comments on commit 4449a64

Please sign in to comment.