tags
Tags to apply to all resources
Common Tags
| Tag | Purpose |
|---|---|
| Environment | dev, staging, prod |
| Project | Project identifier |
| Owner | Team or individual |
| CostCenter | Billing 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 = "..."
}