-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
32 lines (26 loc) · 859 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
32
output "name" {
description = "The resource name of the virtual network."
value = azapi_resource.vnet.name
}
output "peerings" {
description = <<DESCRIPTION
Information about the peerings created in the module.
Please refer to the peering module documentation for details of the outputs
DESCRIPTION
value = module.subnet
}
output "resource" {
description = "The Azure Virtual Network resource. This will be null if an existing vnet is supplied."
value = azapi_resource.vnet
}
output "resource_id" {
description = "The resource ID of the virtual network."
value = azapi_resource.vnet.id
}
output "subnets" {
description = <<DESCRIPTION
Information about the peerings created in the module.
Please refer to the subnet module documentation for details of the outputs.
DESCRIPTION
value = module.peering
}