Skip to content

Commit

Permalink
Add descriptions to virtual network outputs (patch)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukiffer committed Jun 24, 2020
1 parent b6e4569 commit 0da20ae
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions modules/azure-virtual-network/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
output "id" {
value = azurerm_virtual_network.network.id
description = "The ID of the virtual network."
value = azurerm_virtual_network.network.id
}

output "name" {
value = azurerm_virtual_network.network.name
description = "The name of the virtual network."
value = azurerm_virtual_network.network.name
}

output "address_space" {
value = azurerm_virtual_network.network.address_space
description = "The IP address space of the virtual network."
value = azurerm_virtual_network.network.address_space
}

output "guid" {
value = azurerm_virtual_network.network.guid
}

output "subnets" {
value = azurerm_virtual_network.network.subnet
description = "The GUID of the virtual network."
value = azurerm_virtual_network.network.guid
}

0 comments on commit 0da20ae

Please sign in to comment.