# Storage Module - Variables # RFC 0039: ADR-Compliant Foundation Infrastructure variable "name" { description = "Name prefix for all storage resources" type = string } variable "vpc_id" { description = "VPC ID" type = string } variable "private_subnet_ids" { description = "List of private subnet IDs for EFS mount targets" type = list(string) } variable "availability_zones" { description = "List of availability zones" type = list(string) } variable "enable_encryption" { description = "Enable encryption for all storage (FIPS compliance)" type = bool default = true } variable "tags" { description = "Tags to apply to all resources" type = map(string) default = {} }