testing/smoketest/variables.tf (35 lines of code) (raw):
variable "aws_region" {
type = string
description = "aws region"
default = "eu-central-1"
}
variable "function_runtime" {
description = "function runtime and apm agent "
type = string
default = "nodejs"
}
variable "log_level" {
type = string
description = "lambda extension log level"
default = "trace"
}
variable "ess_region" {
type = string
description = "ess region"
default = "gcp-us-west2"
}
variable "ess_deployment_template" {
type = string
description = "Elastic Cloud deployment template"
default = "gcp-vector-search-optimized"
}
variable "ess_version" {
type = string
description = "ess version"
default = "8.[0-9]?([0-9]).[0-9]?([0-9])$"
}
variable "github_workflow_id" {
type = string
description = "The GitHub Workflow ID"
default = "1"
}