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}")