You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: outputs.tf
+10-5Lines changed: 10 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,16 @@
14
14
* limitations under the License.
15
15
*/
16
16
17
+
output"network" {
18
+
value=module.vpc
19
+
description="The created network"
20
+
}
21
+
22
+
output"subnets" {
23
+
value=module.subnets.subnets
24
+
description="A map with keys of form subnet_region/subnet_name and values being the outputs of the google_compute_subnetwork resources used to create corresponding subnets."
25
+
}
26
+
17
27
output"network_name" {
18
28
value=module.vpc.network_name
19
29
description="The name of the VPC being created"
@@ -68,8 +78,3 @@ output "route_names" {
68
78
value=[forrouteinmodule.routes.routes:route.name]
69
79
description="The route names associated with this VPC"
70
80
}
71
-
72
-
output"subnets" {
73
-
value=module.subnets.subnets
74
-
description="A map with keys of form subnet_region/subnet_name and values being the outputs of the google_compute_subnetwork resources used to create corresponding subnets."
0 commit comments