vpc_id
The ID of the VPC
The ID of the VPC. Use this to reference the VPC in other resources.
Example Value
vpc-0123456789abcdef0
Usage
module "vpc" {
source = "registry.patterneddesigns.ca/patterneddesigns/vpc/aws"
version = "0.1.0"
# ... inputs
}
# Access this output
output "vpc_id" {
value = module.vpc.vpc_id
}