mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-30 13:10:47 +00:00
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:
commit
b227fb47fa
1 changed files with 15 additions and 0 deletions
|
|
@ -23,6 +23,21 @@ variable "maximum_concurrency" {
|
||||||
description = "Maximum number of concurrent Lambda invocations from SQS (2-1000). null = no limit."
|
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" {
|
variable "api_key" {
|
||||||
type = string
|
type = string
|
||||||
sensitive = true
|
sensitive = true
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue