Skip to content

Commit

Permalink
Merge pull request #18 from telia-oss/fix-route-table-id-output
Browse files Browse the repository at this point in the history
Fix public route table id output
  • Loading branch information
Kristian authored Jul 17, 2019
2 parents 60d2483 + 235d86f commit e74b674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ output "private_subnet_ids" {

output "public_subnets_route_table_id" {
description = "The ID of the routing table for the public subnets."
value = aws_route_table.public[*].id
value = concat(aws_route_table.public[*].id, [""])[0]
}

output "private_subnets_route_table_ids" {
Expand Down

0 comments on commit e74b674

Please sign in to comment.