forked from rlevchenko/terraform-azure-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
27 lines (22 loc) · 768 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#--------------------------------------------------------------
# Deployment output
#--------------------------------------------------------------
#Service Bus
output "servicebus_namespace_id" {
value = azurerm_servicebus_namespace.rlmvp-svc-svb.*.default_primary_connection_string
sensitive = true
}
#Kusto Cluster
output "kusto_cluster-uri" {
value = azurerm_kusto_cluster.rlmvp-svc-kusto.*.data_ingestion_uri
}
#Analysis Server
output "analysis_server_fqdn" {
value = azurerm_analysis_services_server.rlmvp-svc-ansrv.*.server_full_name
}
#Event Grid
output "event_grid_endpoint" {
value = azurerm_eventgrid_domain.rlmvp-svc-eventgrid.*.endpoint
}
#-----------------------------------------------------------
# Roman Levchenko | rlevchenko.com