We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f8ce98 commit 768b69fCopy full SHA for 768b69f
modules/aks/postgresql/buildingblock/main.tf
@@ -11,7 +11,7 @@ resource "random_password" "administrator_password" {
11
resource "azurerm_postgresql_flexible_server" "db_instance" {
12
name = "${var.workspace_identifier}-${var.project_identifier}-${var.name}"
13
resource_group_name = local.resource_group_name
14
- location = "West Europe"
+ location = local.location
15
16
delegated_subnet_id = local.subnet_id
17
private_dns_zone_id = local.private_dns_zone_id
@@ -30,6 +30,7 @@ resource "azurerm_postgresql_flexible_server" "db_instance" {
30
ignore_changes = [zone]
31
}
32
33
+
34
resource "kubernetes_secret" "credentials" {
35
metadata {
36
namespace = var.namespace
0 commit comments