We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86fbd9b commit c453647Copy full SHA for c453647
infrastructure/main.tf
@@ -41,12 +41,14 @@ resource "azurerm_key_vault_secret" "POSTGRES_DATABASE" {
41
42
module "db-judicial-ref-data" {
43
source = "git@github.com:hmcts/cnp-module-postgres?ref=master"
44
- product = join("-", [var.product, var.component, "postgres-db"])
+ product = var.product
45
+ component = var.component
46
+ name = join("-", [var.product, var.component, "postgres-db"])
47
location = var.location
48
subscription = var.subscription
49
env = var.env
50
postgresql_user = "dbjuddata"
51
database_name = "dbjuddata"
52
common_tags = var.common_tags
53
postgresql_version = var.postgresql_version
-}
54
+}
0 commit comments