-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
37 lines (34 loc) · 1.32 KB
/
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
output "consul_services" {
description = "Application Segment Consul Locals"
value = local.consul_services
}
/*
################################################################################
# Application Segment Outputs
################################################################################
output "zpa_application_segment" {
description = "The ZPA Application Segment"
value = zpa_application_segment.this
}
################################################################################
# Segment Group Outputs
################################################################################
output "zpa_segment_group" {
description = "The ZPA Segment Group"
value = zpa_segment_group.this
}
################################################################################
# Server Group Outputs
################################################################################
output "zpa_server_group" {
description = "The ZPA Server Group"
value = zpa_server_group.this
}
################################################################################
# App Connector Group Outputs
################################################################################
output "zpa_app_connector_group" {
description = "The ZPA App Connector Group"
value = zpa_app_connector_group.this
}
*/