Skip to content

Commit 45e991a

Browse files
committed
added output for private route table association objects
1 parent 7c1f791 commit 45e991a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,10 @@ output "private_route_table_ids" {
198198
description = "List of IDs of private route tables"
199199
value = local.private_route_table_ids
200200
}
201+
output "private_route_table_association_objects" {
202+
description = "A list of all private route table associations, containing the full aws_route_table_association objects."
203+
value = aws_route_table_association.private
204+
}
201205

202206
output "private_nat_gateway_route_ids" {
203207
description = "List of IDs of the private nat gateway route"
@@ -667,3 +671,4 @@ output "name" {
667671
description = "The name of the VPC specified as argument to this module"
668672
value = var.name
669673
}
674+

0 commit comments

Comments
 (0)