nat_gateway_ids

Type string
Module vpc
Version 0.1.0

List of NAT gateway IDs

List of NAT gateway IDs created for private subnet internet access.

Example Value

["nat-0123456789abcdef0", "nat-0123456789abcdef1"]

Usage

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

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