Skip to content

Commit

Permalink
Update output.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
spy86 authored Dec 30, 2024
1 parent 06085d9 commit 7796453
Showing 1 changed file with 27 additions and 21 deletions.
48 changes: 27 additions & 21 deletions output.tf
Original file line number Diff line number Diff line change
@@ -1,29 +1,35 @@
output "route_table_id" {
output "id" {
value = azurerm_route_table.main.id
description = "The Route Table ID."
value = azurerm_route_table.main.id
sensitive = false
sensitive = false
}

output "route_table_name" {
output "name" {
value = azurerm_route_table.main.name
description = "The name of the route table."
value = azurerm_route_table.main.name
sensitive = false
sensitive = false
}

output "route_entries" {
description = "Objects representing routes"
value = azurerm_route_table.main.route[*].name
sensitive = false
output "resource_group_name" {
value = azurerm_route_table.main.resource_group_name
description = "The name of the resource group in which to create the route table."
sensitive = false
}

output "location" {
description = "Azure location where the resource exists."
value = azurerm_route_table.main.location
sensitive = false
value = azurerm_route_table.main.location
description = "Azure location where the route table is created."
sensitive = false
}

output "resource_group_name" {
description = "The name of the resource group in which to create the route table"
value = azurerm_route_table.main.resource_group_name
sensitive = false
output "routes" {
value = azurerm_route_table.main.route
description = "List of objects representing routes."
sensitive = false
}
output "subnets" {
value = azurerm_route_table.main.subnets
description = "The collection of Subnets associated with this route table."
sensitive = false
}
output "tags" {
value = azurerm_route_table.main.tags
description = "A mapping of tags to assign to the resource."
sensitive = false
}

0 comments on commit 7796453

Please sign in to comment.