-
Notifications
You must be signed in to change notification settings - Fork 2
/
outputs.tf
46 lines (39 loc) · 917 Bytes
/
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
44
45
46
// Outputs from this deployment
output "network_region_subnet_mapping" {
value = local.vpc_network_region_subnet_map
}
output "elastic_search_deployments" {
value = zipmap(
var.config_deployment_regions,
module.backend_elastic_search.*
)
}
output "clickhouse_deployments" {
value = zipmap(
var.config_deployment_regions,
module.backend_clickhouse.*
)
}
output "api_deployments" {
value = module.backend_api
}
output "webapp_deployment" {
value = module.web_app
}
output "debug_glb_platform" {
sensitive = true
value = module.glb_platform
}
output "dns_records" {
value = concat(
[google_dns_record_set.dns_a_api_glb],
google_dns_record_set.dns_a_webapp_glb
)
}
// --- Development Mode output information --- //
/*output "inspection_vms" {
value = zipmap(
google_compute_instance.inspection_vm.*.region,
google_compute_instance.inspection_vm.*
)
}*/