Skip to content

Commit

Permalink
Set postgres wal_level to logical
Browse files Browse the repository at this point in the history
  • Loading branch information
gunndabad committed Aug 8, 2024
1 parent 9cf7c39 commit da14c8b
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 da14c8b

Please sign in to comment.