Fix gatus threshold for backups and add domains to service emails
This commit is contained in:
parent
a007ba8a33
commit
731647be9d
3 changed files with 22 additions and 15 deletions
|
|
@ -6,9 +6,9 @@ resource "random_password" "mailcow_service_passwords" {
|
|||
|
||||
resource "mailcow_mailbox" "services" {
|
||||
for_each = local.services_mail
|
||||
domain = "serguzim.me"
|
||||
full_name = each.value.mail
|
||||
local_part = each.value.mail
|
||||
domain = split("@", each.value.mail)[1]
|
||||
full_name = split("@", each.value.mail)[0]
|
||||
local_part = split("@", each.value.mail)[0]
|
||||
password = random_password.mailcow_service_passwords[each.key].result
|
||||
force_pw_update = false
|
||||
smtp_access = each.value.mail_smtp
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue