include db_host, _name and _port in engine/variables.tf

This commit is contained in:
Daniel Roth 2026-03-05 16:05:50 +00:00
parent 90d0600006
commit c7a5b95cb9

View file

@ -23,6 +23,21 @@ variable "maximum_concurrency" {
description = "Maximum number of concurrent Lambda invocations from SQS (2-1000). null = no limit."
}
variable "db_host" {
type = string
sensitive = true
}
variable "db_name" {
type = string
sensitive = true
}
variable "db_port" {
type = string
sensitive = true
}
variable "api_key" {
type = string
sensitive = true