The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/rust/terraform/modules/validator/variables.tf

64 lines
1.4 KiB

variable "aws_region" {
description = "AWS region"
type = string
}
variable "validator_cluster_id" {
description = "ID of the validator cluster"
type = string
}
variable "validator_subnet_id" {
description = "ID of the validator subnet"
type = string
}
variable "validator_sg_id" {
description = "ID of the validator security group"
type = string
}
variable "validator_nat_gateway_id" {
description = "ID of the validator NAT gateway"
type = string
}
variable "validator_name" {
description = "The name of the validator"
type = string
}
variable "origin_chain_name" {
description = "The origin chain of the validator"
type = string
}
variable "validator_cpu" {
description = "CPU units used by the validator. Default 1 vCPU."
type = string
default = "1024"
}
variable "validator_memory" {
description = "Memory units used by the validator. Default 6GB."
type = string
default = "6144"
}
variable "aws_log_group" {
description = "The name of the log group to write to"
type = string
default = "DefaultLogGroup"
}
variable "validator_image_version" {
description = "The name of the log group to write to"
type = string
default = "f44589e-20231130-114734"
}
variable "validator_task_disabled" {
description = "Whether to run the validator in addition to auxiliary setup"
type = bool
default = false
}