name
RequiredName of the security group
Naming Conventions
Security group names should be descriptive and follow a consistent pattern.
Best Practices
- Include the service or role in the name
- Use lowercase with hyphens
- Add environment prefix for clarity
Full Module Example
module "security_group" {
source = "registry.patterneddesigns.ca/patterneddesigns/security-group/aws"
version = "0.1.0"
# name
name = "..."
# Other required inputs
vpc_id = "..."
}