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 050e495 commit 9f0a55eCopy full SHA for 9f0a55e
terraform/common/outputs.tf
@@ -70,3 +70,15 @@ output "instance_profile_name" {
70
k => mod.instance_profile_name
71
}
72
73
+
74
+output "public_route_table_id" {
75
+ description = "ID of the public route table"
76
+ value = module.vpc.public_route_table_id
77
+ sensitive = true
78
+}
79
80
+output "private_route_table_ids" {
81
+ description = "List of IDs of private route tables"
82
+ value = module.vpc.private_route_table_ids
83
84
0 commit comments