route table 추가 환경변경
This commit is contained in:
@ -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
|
||||
}
|
Reference in New Issue
Block a user