forked from GoogleCloudPlatform/cloud-foundation-fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
164 lines (147 loc) · 5.12 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/**
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
output "id" {
description = "Fully qualified network id."
value = local.network.id
depends_on = [
google_compute_network_peering.local,
google_compute_network_peering.remote,
google_compute_shared_vpc_host_project.shared_vpc_host,
google_compute_shared_vpc_service_project.service_projects,
google_service_networking_connection.psa_connection
]
}
output "internal_ipv6_range" {
description = "ULA range."
value = try(local.network.internal_ipv6_range, null)
}
output "name" {
description = "Network name."
value = local.network.name
depends_on = [
google_compute_network_peering.local,
google_compute_network_peering.remote,
google_compute_shared_vpc_host_project.shared_vpc_host,
google_compute_shared_vpc_service_project.service_projects,
google_service_networking_connection.psa_connection
]
}
output "network" {
description = "Network resource."
value = local.network
depends_on = [
google_compute_network_peering.local,
google_compute_network_peering.remote,
google_compute_shared_vpc_host_project.shared_vpc_host,
google_compute_shared_vpc_service_project.service_projects,
google_service_networking_connection.psa_connection
]
}
output "network_attachment_ids" {
description = "IDs of network attachments."
value = {
for k, v in google_compute_network_attachment.default :
k => v.id
}
}
output "project_id" {
description = "Project ID containing the network. Use this when you need to create resources *after* the VPC is fully set up (e.g. subnets created, shared VPC service projects attached, Private Service Networking configured)."
value = var.project_id
depends_on = [
google_compute_subnetwork.subnetwork,
google_compute_network_peering.local,
google_compute_network_peering.remote,
google_compute_shared_vpc_host_project.shared_vpc_host,
google_compute_shared_vpc_service_project.service_projects,
google_service_networking_connection.psa_connection
]
}
output "self_link" {
description = "Network self link."
value = local.network.self_link
depends_on = [
google_compute_network_peering.local,
google_compute_network_peering.remote,
google_compute_shared_vpc_host_project.shared_vpc_host,
google_compute_shared_vpc_service_project.service_projects,
google_service_networking_connection.psa_connection
]
}
output "subnet_ids" {
description = "Map of subnet IDs keyed by name."
value = { for k, v in google_compute_subnetwork.subnetwork : k => v.id }
depends_on = [
# allows correct destruction of internal application load balancers
google_compute_subnetwork.proxy_only
]
}
output "subnet_ips" {
description = "Map of subnet address ranges keyed by name."
value = {
for k, v in google_compute_subnetwork.subnetwork : k => v.ip_cidr_range
}
}
output "subnet_ipv6_external_prefixes" {
description = "Map of subnet external IPv6 prefixes keyed by name."
value = {
for k, v in google_compute_subnetwork.subnetwork :
k => try(v.external_ipv6_prefix, null)
}
}
output "subnet_regions" {
description = "Map of subnet regions keyed by name."
value = {
for k, v in google_compute_subnetwork.subnetwork : k => v.region
}
}
output "subnet_secondary_ranges" {
description = "Map of subnet secondary ranges keyed by name."
value = {
for k, v in google_compute_subnetwork.subnetwork :
k => {
for range in v.secondary_ip_range :
range.range_name => range.ip_cidr_range
}
}
}
output "subnet_self_links" {
description = "Map of subnet self links keyed by name."
value = { for k, v in google_compute_subnetwork.subnetwork : k => v.self_link }
depends_on = [
# allows correct destruction of internal application load balancers
google_compute_subnetwork.proxy_only
]
}
output "subnets" {
description = "Subnet resources."
value = { for k, v in google_compute_subnetwork.subnetwork : k => v }
depends_on = [
# allows correct destruction of internal application load balancers
google_compute_subnetwork.proxy_only
]
}
output "subnets_private_nat" {
description = "Private NAT subnet resources."
value = { for k, v in google_compute_subnetwork.private_nat : k => v }
}
output "subnets_proxy_only" {
description = "L7 ILB or L7 Regional LB subnet resources."
value = { for k, v in google_compute_subnetwork.proxy_only : k => v }
}
output "subnets_psc" {
description = "Private Service Connect subnet resources."
value = { for k, v in google_compute_subnetwork.psc : k => v }
}