vpc_cidr_block

Type string
Module vpc
Version 0.1.0

The IPv4 CIDR block of the VPC

The IPv4 CIDR block of the VPC.

Example Value

10.0.0.0/16

Usage

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

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