Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Jan 6, 2024
1 parent 8eddfae commit 3e39272
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/setup/console.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ resource "helm_release" "runtime" {
timeout = 300
wait = false
values = [
data.local_sensitive_file.console.content
data.local_sensitive_file.runtime.content
]

depends_on = [ module.mgmt.cluster, helm_release.certmanager, helm_release.flux ]
Expand Down
4 changes: 2 additions & 2 deletions terraform/clouds/azure/postgres.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ resource "azurerm_postgresql_flexible_server" "postgres" {
}

lifecycle {
ignore_changes = [ zone ]
ignore_changes = [ zone, high_availability.0.standby_availability_zone ]
}
}

resource "azurerm_postgresql_flexible_server_database" "example" {
resource "azurerm_postgresql_flexible_server_database" "console" {
count = var.create_db ? 1 : 0
name = "console"
server_id = azurerm_postgresql_flexible_server.postgres[0].id
Expand Down

0 comments on commit 3e39272

Please sign in to comment.