- 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.
19 lines
355 B
HCL
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"
|
|
}
|
|
|