private_subnet_ids

Type string
Module vpc
Version 0.1.0

List of private subnet IDs

List of private subnet IDs. Use these for resources that don’t need direct internet access.

Example Value

["subnet-0123456789abcdef0", "subnet-0123456789abcdef1", "subnet-0123456789abcdef2"]

Usage

module "vpc" {
  source  = "registry.patterneddesigns.ca/patterneddesigns/vpc/aws"
  version = "0.1.0"
  # ... inputs
}

# Access this output
output "private_subnet_ids" {
  value = module.vpc.private_subnet_ids
}