tags

Type map(string)
Default null
Module vpc

Tags to apply to all resources

Common Tags

TagPurpose
Environmentdev, staging, prod
ProjectProject identifier
OwnerTeam or individual
CostCenterBilling allocation

Best Practices

  • Define a consistent tagging strategy
  • Use tags for cost allocation
  • Tag all resources for compliance

Full Module Example

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

  # tags
  tags = "..."

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