route table 추가 환경변경

This commit is contained in:
2023-01-13 02:55:31 +09:00
parent e9c35f55b5
commit d3f56ecc0c
20 changed files with 274 additions and 201 deletions

View File

@ -14,6 +14,11 @@ output "private_subnet" {
value = module.subnet_private.subnet
}
output "private_subnet_tgw" {
description = "The name of vpc hq id"
value = module.subnet_private_tgw.subnet
}
output "vpc_id" {
description = "vpc_id"
value = module.vpc_hq.vpc_hq_id
@ -24,4 +29,17 @@ output "nat_gw_id" {
description = "vpc_id"
value = module.nat_gw.nat_id
}
output "route_public_id" {
description = "get private route id"
value = module.route_public.route_id
}
output "route_private_id" {
description = "get private route id"
value = module.route_private.route_id
}
output "route_private_tgw_id" {
description = "get private route id"
value = module.route_private_tgw.route_id
}