-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.tf
49 lines (40 loc) · 1.58 KB
/
output.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
44
45
46
47
48
49
output "ca_certificate_secret_id" {
value = local.ca_certificate_secret_id
description = "ID of the CA certificate secret used sidecar."
}
output "load_balancer_dns" {
value = local.sidecar_endpoint
description = "Sidecar load balancer DNS endpoint."
}
output "load_balancer_id" {
value = azurerm_lb.lb.id
description = "ID of the load balancer."
}
output "log_analytics_workspace_id" {
value = azurerm_log_analytics_workspace.log_analytics_workspace.id
description = "Azure Log Analytics workspace ID."
}
output "log_analytics_workspace_primary_shared_key" {
value = azurerm_log_analytics_workspace.log_analytics_workspace.primary_shared_key
description = "Azure Log Analytics primary shared key."
}
output "log_analytics_workspace_secondary_shared_key" {
value = azurerm_log_analytics_workspace.log_analytics_workspace.secondary_shared_key
description = "Azure Log Analytics secondary shared key."
}
output "resource_group_name" {
value = azurerm_resource_group.resource_group.name
description = "Azure resource group name that the sidecar belongs to."
}
output "secret_id" {
value = local.secret_id
description = "ID of the secret with the credentials used by the sidecar"
}
output "tls_certificate_secret_id" {
value = local.tls_certificate_secret_id
description = "ID of the TLS certificate secret used by the sidecar"
}
output "user_assigned_identity_name" {
value = azurerm_user_assigned_identity.user_assigned_identity.name
description = "Name of the User Assigned Identity used by the sidecar"
}