Skip to content

Commit

Permalink
remove collation see if that helps
Browse files Browse the repository at this point in the history
  • Loading branch information
kahlstrm committed Nov 7, 2023
1 parent acc9a46 commit 75ab203
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion modules/cms/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ resource "azurerm_postgresql_database" "tikweb_cms_db" {
resource "azurerm_postgresql_flexible_server_database" "tikweb_cms_db_new" {
name = "${local.db_name}-new"
server_id = var.postgres_server_new_id
collation = "fi_FI"
charset = "utf8"
}

Expand Down
3 changes: 1 addition & 2 deletions modules/ilmo/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ resource "azurerm_postgresql_database" "ilmo_db" {
}

resource "azurerm_postgresql_flexible_server_database" "ilmo_db_new" {
name = "${local.db_name}-new"
name = "${local.db_name}_new"
server_id = var.postgres_server_new_id
collation = "fi_FI"
charset = "utf8"
}

Expand Down
1 change: 0 additions & 1 deletion modules/tenttiarkisto/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ resource "azurerm_postgresql_database" "tenttiarkisto_db" {
resource "azurerm_postgresql_flexible_server_database" "tenttiarkisto_db_new" {
name = "${local.db_name}_new"
server_id = var.postgres_server_new_id
collation = "fi_FI"
charset = "utf8"
}

Expand Down

0 comments on commit 75ab203

Please sign in to comment.