forked from TerraformingCloud/tf-cicd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathouts.tf
34 lines (27 loc) · 1.14 KB
/
outs.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
#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#
#* Root Module - Outputs *#
#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#
// output "resource-group-name" {
// description = "Print the name of the resource group"
// value = module.vnet.resource-group-name
// }
// output "resource-group-location" {
// description = "Print the location of the resource group"
// value = module.vnet.resource-group-location
// }
// output "virtual-network-name" {
// description = "Print the name of the virtual network"
// value = module.vnet.virtual-network-name
// }
// output "virtual-network-ip-range" {
// description = "Print the ip range of the virtual network"
// value = module.vnet.virtual-network-ip-range
// }
// output "subnet-name" {
// description = "Print the name of the subnet"
// value = module.vnet.subnet-name
// }
// output "subnet-ip-range" {
// description = "Print the ip range of the subnet"
// value = module.vnet.subnet-ip-range
// }