Merge pull request #786 from Hestia-Homes/deploy-backend-with-terraform

Include db_host, _name and _port in engine/variables.tf
This commit is contained in:
KhalimCK 2026-03-05 16:07:14 +00:00 committed by GitHub
commit b227fb47fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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