fix roundcubemail and move to separate deploymen t[ci skip]

This commit is contained in:
Viktor Barzin 2025-10-18 13:23:53 +00:00
parent 32e90e2a2f
commit 0dc15de54f
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863
6 changed files with 169 additions and 54 deletions

View file

@ -5,6 +5,7 @@ variable "hackmd_db_password" {}
variable "mailserver_accounts" {}
variable "mailserver_aliases" {}
variable "mailserver_opendkim_key" {}
variable "mailserver_roundcubemail_db_password" { type = string }
variable "mailserver_sasl_passwd" {}
variable "pihole_web_password" {}
variable "webhook_handler_secret" {}
@ -219,6 +220,7 @@ module "mailserver" {
postfix_account_aliases = var.mailserver_aliases
opendkim_key = var.mailserver_opendkim_key
sasl_passwd = var.mailserver_sasl_passwd
roundcube_db_password = var.mailserver_roundcubemail_db_password
depends_on = [null_resource.core_services]
}