We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c1f791 commit 45e991aCopy full SHA for 45e991a
outputs.tf
@@ -198,6 +198,10 @@ output "private_route_table_ids" {
198
description = "List of IDs of private route tables"
199
value = local.private_route_table_ids
200
}
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
+}
205
206
output "private_nat_gateway_route_ids" {
207
description = "List of IDs of the private nat gateway route"
@@ -667,3 +671,4 @@ output "name" {
667
671
description = "The name of the VPC specified as argument to this module"
668
672
value = var.name
669
673
674
+
0 commit comments