add connection string to finance app [ci skip]

This commit is contained in:
viktorbarzin 2023-04-25 23:54:38 +01:00
parent a35aeb9f7b
commit e2efe7e681
No known key found for this signature in database
GPG key ID: 0EB088298288D958
5 changed files with 10 additions and 0 deletions

View file

@ -48,6 +48,7 @@ variable "monitoring_idrac_password" {}
variable "alertmanager_slack_api_url" {}
variable "home_assistant_configuration" {}
variable "shadowsocks_password" {}
variable "finance_app_db_connection_string" {}
variable "finance_app_monzo_client_id" {}
variable "finance_app_monzo_client_secret" {}
variable "finance_app_sqlite_db_path" {}
@ -279,4 +280,5 @@ module "kubernetes_cluster" {
finance_app_oauth_google_client_id = var.finance_app_oauth_google_client_id
finance_app_oauth_google_client_secret = var.finance_app_oauth_google_client_secret
finance_app_graphql_api_secret = var.finance_app_graphql_api_secret
finance_app_db_connection_string = var.finance_app_db_connection_string
}