Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New combined objects and new output signalr #2034

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -197,12 +197,14 @@ locals {
app_config = local.combined_objects_app_config
azure_container_registries = local.combined_objects_azure_container_registries
client_config = tomap({ (local.client_config.landingzone_key) = { config = local.client_config } })
cosmos_dbs = local.combined_objects_cosmos_dbs
keyvaults = local.combined_objects_keyvaults
machine_learning_workspaces = local.combined_objects_machine_learning
managed_identities = local.combined_objects_managed_identities
mssql_databases = local.combined_objects_mssql_databases
mssql_servers = local.combined_objects_mssql_servers
maintenance_configuration = local.combined_objects_maintenance_configuration
signalr_services = local.combined_objects_signalr_services
storage_accounts = local.combined_objects_storage_accounts
networking = local.combined_objects_networking
}
Expand Down
10 changes: 10 additions & 0 deletions modules/messaging/signalr_service/output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ output "name" {
value = azurerm_signalr_service.signalr_service.name
}

output "primary_connection_string" {
description = "The primary connection string of the SignalR Service"
value = azurerm_signalr_service.signalr_service.primary_connection_string
}

output "secondary_connection_string" {
description = "The secondary connection string of the SignalR Service"
value = azurerm_signalr_service.signalr_service.secondary_connection_string
}

output "resource_group_name" {
description = "The resource group name of the SignalR Service"
value = local.resource_group_name
Expand Down