From 68d9b8401be7ac3f6c29cb3b7e0f0327b1ce3a71 Mon Sep 17 00:00:00 2001 From: Alis Akers <94012653+alismx@users.noreply.github.com> Date: Tue, 11 Jul 2023 11:01:20 -0700 Subject: [PATCH] update case for preloaded libraries (#6111) --- ops/services/postgres_db/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ops/services/postgres_db/main.tf b/ops/services/postgres_db/main.tf index 56adcc6fc9..73969935c3 100644 --- a/ops/services/postgres_db/main.tf +++ b/ops/services/postgres_db/main.tf @@ -70,7 +70,7 @@ resource "azurerm_postgresql_flexible_server_configuration" "pgms_wait_sampling_ resource "azurerm_postgresql_flexible_server_configuration" "postgresql_shared_preload_libraries" { name = "shared_preload_libraries" server_id = azurerm_postgresql_flexible_server.db.id - value = "AUTO_EXPLAIN,PG_CRON,PG_STAT_STATEMENTS" + value = "auto_explain,pg_cron,pg_stat_statements" } # This allows us to install these extensions on the server