-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
79 lines (64 loc) · 2.01 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
output "vnet_name" {
value = local.existing_vnet_name
description = "The name of the VNET."
}
output "location" {
description = "The location/region where the VNET."
value = var.location
}
output "resource_group_name" {
description = "The name of the resource group."
value = var.resource_group_name
}
output "vnet_id" {
value = local.vnet_id
description = "The ID of the VNET."
}
output "vnet_cidr" {
value = local.vnet_cidr
description = "The CIDR block of the VNET."
}
output "outside_subnet_ids" {
value = azurerm_subnet.outside.*.id
description = "The IDs of the outside subnets."
}
output "inside_subnet_ids" {
value = azurerm_subnet.inside.*.id
description = "The IDs of the inside subnets."
}
output "local_subnet_ids" {
value = azurerm_subnet.local.*.id
description = "The IDs of the local subnets."
}
output "outside_subnet_names" {
value = azurerm_subnet.outside.*.name
description = "The Names of the outside subnets."
}
output "inside_subnet_names" {
value = azurerm_subnet.inside.*.name
description = "The Names of the inside subnets."
}
output "local_subnet_names" {
value = azurerm_subnet.local.*.name
description = "The Names of the local subnets."
}
output "inside_route_table_ids" {
value = azurerm_route_table.inside.*.id
description = "The IDs of the inside route tables."
}
output "inside_route_table_names" {
value = azurerm_route_table.inside.*.name
description = "The names of the inside route tables."
}
output "outside_security_group_name" {
value = azurerm_network_security_group.outside.*.name
description = "The Name of the outside security group."
}
output "inside_security_group_name" {
value = azurerm_network_security_group.inside.*.name
description = "The Name of the inside security group."
}
output "az_names" {
value = local.az_names
description = "Availability zones."
}