variable "environment" { description = "Environment name (dev, staging, prod)" type = string default = "dev" } variable "aws_region" { description = "AWS region for deployment" type = string default = "us-east-1" } variable "lambda_timeout" { description = "Lambda timeout in seconds" type = number default = 60 } variable "lambda_memory" { description = "Lambda memory in MB" type = number default = 512 } variable "log_level" { description = "Rust log level" type = string default = "info" } variable "log_retention_days" { description = "CloudWatch log retention in days" type = number default = 7 } variable "table_name" { description = "DynamoDB table name for pricing" type = string default = "" }