Skip to content

Commit

Permalink
Merge pull request #72 from pluralsh/azure-fixes
Browse files Browse the repository at this point in the history
fix: Azure `plural up`
  • Loading branch information
maciaszczykm authored Dec 5, 2024
2 parents df88d82 + d712506 commit c2ebd07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions terraform/clouds/azure/postgres.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ resource "azurerm_postgresql_flexible_server" "postgres" {
private_dns_zone_id = azurerm_private_dns_zone.postgres[0].id
administrator_login = "console"
administrator_password = random_password.password.result
public_network_access_enabled = false

storage_mb = var.postgres_disk
sku_name = var.postgres_sku
Expand Down
2 changes: 1 addition & 1 deletion terraform/clouds/azure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ variable "db_sku" {

variable "workload_identity_enabled" {
type = bool
default = false
default = true
}

variable "postgres_dns_zone" {
Expand Down

0 comments on commit c2ebd07

Please sign in to comment.