# S3 Module Variables # RFC 0039: ADR-Compliant Foundation Infrastructure variable "name" { description = "Name prefix for resources" type = string } variable "tags" { description = "Tags to apply to all resources" type = map(string) default = {} } variable "log_retention_days" { description = "Number of days to retain logs in Loki bucket" type = number default = 90 } variable "trace_retention_days" { description = "Number of days to retain traces in Tempo bucket" type = number default = 30 } variable "enable_cross_region_replication" { description = "Enable cross-region replication for critical buckets" type = bool default = false } variable "replica_region" { description = "AWS region for bucket replication" type = string default = "us-west-2" }