-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathoutput.tf
More file actions
59 lines (45 loc) · 1.33 KB
/
output.tf
File metadata and controls
59 lines (45 loc) · 1.33 KB
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
50
51
52
53
54
55
56
57
58
59
output "app_key_vault_id" {
value = module.app-key-vault.key_vault_id
}
output "container_app_environment_id" {
value = module.container-app-environment.id
}
output "vnet_name" {
value = module.main_vnet.name
}
output "log_analytics_workspace_id" {
value = module.log_analytics_workspace_audit.id
}
output "default_domain" {
value = module.container-app-environment.default_domain
}
output "postgres_subnet_id" {
value = module.postgres_subnet.id
}
output "main_subnet_id" {
value = module.main_subnet.id
}
output "monitor_action_group_id" {
value = module.monitor_action_group.monitor_action_group.id
}
output "app_insights_connection_string" {
value = module.app_insights_audit.connection_string
}
output "app_insights_id" {
value = module.app_insights_audit.id
}
output "relay_namespace_name" {
value = var.enable_relay ? module.relay_namespace[0].name : null
}
output "relay_namespace_id" {
value = var.enable_relay ? module.relay_namespace[0].id : null
}
output "servicebus_namespace_name" {
value = var.enable_service_bus ? module.servicebus_namespace[0].namespace_name : null
}
output "servicebus_namespace_id" {
value = var.enable_service_bus ? module.servicebus_namespace[0].namespace_id : null
}
output "servicebus_topic_ids" {
value = var.enable_service_bus ? module.servicebus_namespace[0].topic_ids : {}
}