add smtp config to vaultwarden to enable email 2fa [ci skip]

This commit is contained in:
Viktor Barzin 2023-11-18 19:13:40 +00:00
parent 3cea41106c
commit ef6f5b5e51
4 changed files with 31 additions and 0 deletions

View file

@ -57,6 +57,7 @@ variable "finance_app_gocardless_secret_id" {}
variable "headscale_config" {}
variable "immich_postgresql_password" {}
variable "ingress_honeypotapikey" {}
variable "vaultwarden_smtp_password" {}
variable "ansible_prefix" {
default = "ANSIBLE_VAULT_PASSWORD_FILE=~/.ansible/vault_pass.txt ansible-playbook -i playbook/hosts.yaml playbook/linux.yml -t linux/initial_setup"
@ -283,6 +284,8 @@ module "kubernetes_cluster" {
immich_postgresql_password = var.immich_postgresql_password
ingress_honeypotapikey = var.ingress_honeypotapikey
vaultwarden_smtp_password = var.vaultwarden_smtp_password
}