enable_ipv6

Type bool
Default null
Module vpc

Enable IPv6 support for the VPC and subnets

IPv6 Support

AWS assigns a /56 IPv6 CIDR block to your VPC when enabled.

Best Practices

  • Enable for modern applications
  • Plan subnet IPv6 allocation
  • Ensure security groups allow IPv6 traffic

Full Module Example

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

  # enable_ipv6
  enable_ipv6 = "..."

  # Other required inputs
  name = "..."
  vpc_cidr = "..."
  availability_zones = "..."
}