-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoutput.tf
More file actions
33 lines (28 loc) · 1001 Bytes
/
output.tf
File metadata and controls
33 lines (28 loc) · 1001 Bytes
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
output "name" {
description = "The name of the Relay namespace."
value = azurerm_relay_namespace.relay.name
}
output "id" {
description = "The ID of the Relay namespace."
value = azurerm_relay_namespace.relay.id
}
output "primary_connection_string" {
description = "The primary connection string for the Relay namespace."
value = azurerm_relay_namespace.relay.primary_connection_string
sensitive = true
}
output "secondary_connection_string" {
description = "The secondary connection string for the Relay namespace."
value = azurerm_relay_namespace.relay.secondary_connection_string
sensitive = true
}
output "primary_key" {
description = "The primary access key for the Relay namespace."
value = azurerm_relay_namespace.relay.primary_key
sensitive = true
}
output "secondary_key" {
description = "The secondary access key for the Relay namespace."
value = azurerm_relay_namespace.relay.secondary_key
sensitive = true
}