# Security Module Variables variable "name_prefix" { description = "Prefix for resource names" type = string } variable "vpc_id" { description = "ID of the VPC" type = string } variable "allowed_cidr_blocks" { description = "CIDR blocks allowed to access the ALB" type = list(string) default = ["0.0.0.0/0"] } variable "ssh_allowed_cidr_blocks" { description = "CIDR blocks allowed to SSH into instances" type = list(string) default = [] } variable "tags" { description = "Tags to apply to resources" type = map(string) default = {} }