variable "domain_name" { description = "Custom domain name (optional)" type = string default = "" } variable "environment" { description = "Environment name" type = string default = "production" } variable "app_name" { description = "Application name" type = string default = "filamenteka" } variable "admin_password" { description = "Admin password for the application" type = string default = "admin123" sensitive = true } variable "cloudflare_api_token" { description = "Cloudflare API token for DNS management" type = string default = "" sensitive = true } variable "aws_region" { description = "AWS region" type = string default = "eu-central-1" }