add sendgrid smtp relay settings to postfix [ci skip]

This commit is contained in:
viktorbarzin 2022-12-17 14:04:52 +00:00
parent c8ea8a52bb
commit 18a7a6fea2
No known key found for this signature in database
GPG key ID: 0EB088298288D958
6 changed files with 26 additions and 6 deletions

View file

@ -5,6 +5,7 @@ variable "hackmd_db_password" {}
variable "mailserver_accounts" {}
variable "mailserver_aliases" {}
variable "mailserver_opendkim_key" {}
variable "mailserver_sasl_passwd" {}
variable "pihole_web_password" {}
variable "webhook_handler_secret" {}
variable "wireguard_wg_0_conf" {}
@ -132,6 +133,7 @@ module "mailserver" {
mailserver_accounts = var.mailserver_accounts
postfix_account_aliases = var.mailserver_aliases
opendkim_key = var.mailserver_opendkim_key
sasl_passwd = var.mailserver_sasl_passwd
depends_on = [null_resource.core_services]
}