Files
CurrenciCombo/terraform/variables.tf
defiQUG f600b7b15e Add ECDSA signature verification and enhance ComboHandler functionality
- Integrated ECDSA for signature verification in ComboHandler.
- Updated event emissions to include additional parameters for better tracking.
- Improved gas tracking during execution of combo plans.
- Enhanced database interactions for storing and retrieving plans, including conflict resolution and status updates.
- Added new dependencies for security and database management in orchestrator.
2025-11-05 16:28:48 -08:00

19 lines
355 B
HCL

variable "aws_region" {
description = "AWS region for resources"
type = string
default = "us-east-1"
}
variable "db_password" {
description = "PostgreSQL database password"
type = string
sensitive = true
}
variable "environment" {
description = "Environment name"
type = string
default = "production"
}