Skip to content

Commit 9f0a55e

Browse files
committed
fix: 마이그레이션 작업을 위한 라우팅 테이블 output 추가
1 parent 050e495 commit 9f0a55e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

terraform/common/outputs.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,15 @@ output "instance_profile_name" {
7070
k => mod.instance_profile_name
7171
}
7272
}
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+
sensitive = true
84+
}

0 commit comments

Comments
 (0)