Skip to content

Commit

Permalink
fix outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Oct 17, 2022
1 parent 211c386 commit 35e1b26
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions vpc-transit-gateway-association/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@ output "gateway_peer" {

output "route_tables_self" {
description = "Transit Gateway route tables self (this region)"
value = data.aws_ec2_transit_gateway_route_table.route_tables_self
# value = data.aws_ec2_transit_gateway_route_table.route_tables_self
value = var.data_input.route_tables_self
}

output "route_tables_peer" {
description = "Transit Gateway route tables peer (other region)"
value = data.aws_ec2_transit_gateway_route_table.route_tables_peer
# value = data.aws_ec2_transit_gateway_route_table.route_tables_peer
value = var.data_input.route_tables_peer
}

output "map_route_tables_self" {
Expand Down

0 comments on commit 35e1b26

Please sign in to comment.