-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoutputs.tf
43 lines (36 loc) · 1.42 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
output "id" {
description = "The ID of the SignalR service."
value = azurerm_signalr_service.signalr.id
}
output "hostname" {
description = "The FQDN of the SignalR service"
value = azurerm_signalr_service.signalr.hostname
}
output "public_port" {
description = "The publicly accessible port of the SignalR service which is designed for browser/client use."
value = azurerm_signalr_service.signalr.public_port
}
output "server_port" {
description = "The publicly accessible port of the SignalR service which is designed for customer server side use."
value = azurerm_signalr_service.signalr.server_port
}
output "primary_access_key" {
description = "The primary access key for the SignalR service."
value = azurerm_signalr_service.signalr.primary_access_key
sensitive = true
}
output "primary_connection_string" {
description = "The primary connection string for the SignalR service."
value = azurerm_signalr_service.signalr.primary_connection_string
sensitive = true
}
output "secondary_access_key" {
description = "The secondary access key for the SignalR service."
value = azurerm_signalr_service.signalr.secondary_access_key
sensitive = true
}
output "secondary_connection_string" {
description = "The secondary connection string for the SignalR service."
value = azurerm_signalr_service.signalr.secondary_connection_string
sensitive = true
}