Skip to content

Commit

Permalink
terraform fmt
Browse files Browse the repository at this point in the history
Signed-off-by: Ferdinand de Baecque <45566171+Ferdinanddb@users.noreply.github.com>
  • Loading branch information
Ferdinanddb committed May 29, 2024
1 parent 4a5575a commit a95a3e1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions terraform/modules/azure/postgres-flex-server/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,17 @@ resource "azurerm_postgresql_flexible_server" "postgres_flex_server" {
name = local.postgres_server_name
resource_group_name = data.azurerm_resource_group.rg.name
location = data.azurerm_resource_group.rg.location

authentication {
active_directory_auth_enabled = true
password_auth_enabled = false
tenant_id = var.application_tenant_id
}

version = "14"
sku_name = var.postgres_sku_name
storage_mb = var.postgres_storage_mb
zone = "1"

tags = var.tags
tags = var.tags
}

resource "azurerm_postgresql_flexible_server_active_directory_administrator" "postgres_flex_server_ad_admin_uami" {
Expand Down

0 comments on commit a95a3e1

Please sign in to comment.