/** * Copyright © 2014-2022 HashiCorp, Inc. * * This Source Code is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this project, you can obtain one at http://mozilla.org/MPL/2.0/. * */ output "private_subnet_ids" { description = "Private subnet IDs" value = module.vpc.private_subnets } output "vpc_id" { description = "The ID of the VPC" value = module.vpc.vpc_id }