-
Notifications
You must be signed in to change notification settings - Fork 0
/
03-boundary-outputs.tf
79 lines (60 loc) · 2.06 KB
/
03-boundary-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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
output "group_id-id" {
value = boundary_group.group01.id
}
output "group_id-scope_id" {
value = boundary_group.group01.scope_id
}
output "scope_project-id" {
value = boundary_scope.project.id
}
output "host_catalog_id" {
value = boundary_host_catalog_static.boundary_demo.id
}
output "host_static_net10_target_connected_id" {
value = boundary_host_static.net10_target_connected.id
}
output "host_static_net10_target_connected_name" {
value = boundary_host_static.net10_target_connected.name
}
output "host_static_net10_worker_ingress_id" {
value = boundary_host_static.net10_worker_ingress.id
}
output "host_static_net10_worker_ingress_name" {
value = boundary_host_static.net10_worker_ingress.name
}
output "host_static_net172_worker_egress_id" {
value = boundary_host_static.net172_worker_egress.id
}
output "host_static_net172_worker_egress_name" {
value = boundary_host_static.net172_worker_egress.name
}
output "host_static_net172_target_remote_id" {
value = boundary_host_static.net172_target_remote.id
}
output "host_static_net172_target_remote_name" {
value = boundary_host_static.net172_target_remote.name
}
output "target_net10_target_connected_ssh_id" {
value = boundary_target.net10_target_connected_ssh.id
}
output "target_net10_target_connected_ssh_name" {
value = boundary_target.net10_target_connected_ssh.name
}
output "target_net10_worker_ingress_direct_ssh_id" {
value = boundary_target.net10_worker_ingress_direct_ssh.id
}
output "target_net10_worker_ingress_direct_ssh_name" {
value = boundary_target.net10_worker_ingress_direct_ssh.name
}
output "target_net172_worker_egress_connected_ssh_id" {
value = boundary_target.net172_worker_egress_connected_ssh.id
}
output "target_net172_worker_egress_connected_ssh_name" {
value = boundary_target.net172_worker_egress_connected_ssh.name
}
output "target_net172_target_remote_connected_ssh_id" {
value = boundary_target.net172_target_remote_connected_ssh.id
}
output "target_net172_target_remote_connected_ssh_name" {
value = boundary_target.net172_target_remote_connected_ssh.name
}