public_subnet_ids

Type string
Module vpc
Version 0.1.0

List of public subnet IDs

List of public subnet IDs. Use these for resources that need direct internet access.

Example Value

["subnet-abcdef0123456789a", "subnet-abcdef0123456789b", "subnet-abcdef0123456789c"]

Usage

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

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