-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
31 lines (25 loc) · 1020 Bytes
/
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
#################################################################
# VIRTUAL NETWORK
#################################################################
output "name" {
value = azurerm_virtual_network.this.name
description = "The name of the virtual network."
}
output "id" {
value = azurerm_virtual_network.this.id
description = "The ID of the virtual network."
}
#################################################################
# SUBNETS
#################################################################
output "subnet_ids" {
value = { for subnet in azurerm_subnet.this : subnet.name => subnet.id }
description = "The IDs of the subnets within the virtual network."
}
#################################################################
# SECURITY GROUPS
#################################################################
output "security_group_ids" {
value = { for sg in azurerm_network_security_group.this : sg.name => sg.id }
description = "The IDs of the security groups."
}