-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
expanded the outputs from the tgw connect peer
- Loading branch information
1 parent
52cad35
commit 9bb2fca
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,39 @@ | ||
output "arn" { | ||
description = "The ARN of the transit gateway connect peer" | ||
value = aws_ec2_transit_gateway_connect_peer.peer.arn | ||
} | ||
|
||
output "bgp_asn" { | ||
description = "The BGP ASN of the connect peer." | ||
value = aws_ec2_transit_gateway_connect_peer.peer.bgp_asn | ||
} | ||
|
||
output "bgp_peer_address" { | ||
description = "The BGP peer address within the connect tunnel. This is the address peering with the transit gateway." | ||
value = aws_ec2_transit_gateway_connect_peer.peer.bgp_peer_address | ||
} | ||
|
||
output "bgp_transit_gateway_addresses" { | ||
description = "The BGP transit gateway address within the connect tunnel. This is the address of the transit gateway." | ||
value = aws_ec2_transit_gateway_connect_peer.peer.bgp_transit_gateway_address | ||
} | ||
|
||
output "id" { | ||
description = "The ID of the Transit Gateway Connect Peer" | ||
value = aws_ec2_transit_gateway_connect_peer.peer.id | ||
} | ||
|
||
output "inside_cidr_blocks" { | ||
description = "The CIDR blocks associated with the inside IP addresses of the connect peer." | ||
value = aws_ec2_transit_gateway_connect_peer.peer.inside_cidr_blocks | ||
} | ||
|
||
output "peer_address" { | ||
description = "The IP address of the connect peer." | ||
value = aws_ec2_transit_gateway_connect_peer.peer.peer_address | ||
} | ||
|
||
output "transit_gateway_address" { | ||
description = "The IP address of the transit gateway. This is the IP used to connect to the transit gateway." | ||
value = aws_ec2_transit_gateway_connect_peer.peer.transit_gateway_address | ||
} |