From 2a4eb0bdaa785dee8d48e24b763efd2e1a1d89bf Mon Sep 17 00:00:00 2001 From: Richard Kingston <98461689+rfk-nc@users.noreply.github.com> Date: Wed, 11 Dec 2024 09:47:32 +0000 Subject: [PATCH] Amend Event Hub output (#83) --- infrastructure/modules/event-hub/output.tf | 2 +- infrastructure/modules/shared-config/output.tf | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/infrastructure/modules/event-hub/output.tf b/infrastructure/modules/event-hub/output.tf index b7aff47..a365e18 100644 --- a/infrastructure/modules/event-hub/output.tf +++ b/infrastructure/modules/event-hub/output.tf @@ -6,6 +6,6 @@ output "id" { value = azurerm_eventhub_namespace.eventhub_ns.id } -output "eventhubs" { +output "event_hubs" { value = azurerm_eventhub.eventhub } diff --git a/infrastructure/modules/shared-config/output.tf b/infrastructure/modules/shared-config/output.tf index 15b17a0..49a741d 100644 --- a/infrastructure/modules/shared-config/output.tf +++ b/infrastructure/modules/shared-config/output.tf @@ -82,6 +82,8 @@ locals { network-security-group = upper("NSG-${var.env}-${var.location_map[var.location]}-${var.application}") postgres-sql-server = lower("postgres-${var.application}-${var.env}-${var.location_map[var.location]}") private-ssh-key = lower("ssh-pri-${var.env}${var.location_map[var.location]}${var.application}") + private-link-scope = lower("ampls-${var.env}${var.location_map[var.location]}${var.application}") + private-link-scoped-service = lower("ampls-svc-${var.env}${var.location_map[var.location]}${var.application}") public-ip-address = lower("PIP-${var.env}-${var.location_map[var.location]}-${var.application}") public-ip-dns = lower("${var.env}${var.location_map[var.location]}${var.application}") public-ssh-key = lower("ssh-pub-${var.env}${var.location_map[var.location]}${var.application}")