-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutput.tf
More file actions
39 lines (30 loc) · 801 Bytes
/
output.tf
File metadata and controls
39 lines (30 loc) · 801 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
34
35
36
37
38
39
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_audit_id" {
value = module.log_analytics_workspace_audit.id
}
output "app_insights_id" {
value = module.app_insights_audit.id
}
output "monitor_action_group_id" {
value = module.monitor_action_group.monitor_action_group.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 "app_insights_connection_string" {
value = module.app_insights_audit.connection_string
}