-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
39 lines (32 loc) · 1.31 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
output "principal_database_subnet_address_prefixes" {
description = "The address prefixes of the principal database subnet."
value = azurerm_subnet.principal_database.address_prefixes
}
output "principal_database_subnet_id" {
description = "The ID of the principal database subnet."
value = azurerm_subnet.principal_database.id
}
output "principal_private_subnet_address_prefixes" {
description = "The address prefixes of the principal private subnet."
value = azurerm_subnet.principal_private.address_prefixes
}
output "principal_private_subnet_id" {
description = "The ID of the principal private subnet."
value = azurerm_subnet.principal_private.id
}
output "principal_public_subnet_address_prefixes" {
description = "The address prefixes of the principal public subnet."
value = azurerm_subnet.principal_public.address_prefixes
}
output "principal_public_subnet_id" {
description = "The ID of the principal public subnet."
value = azurerm_subnet.principal_public.id
}
output "virtual_network_address_space" {
description = "The address space of the principal virtual network."
value = local.virtual_network_address_space
}
output "virtual_network_name" {
description = "The name of the principal virtual network."
value = local.virtual_network_name
}