aboutsummaryrefslogtreecommitdiff
path: root/nomad
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2020-02-11 22:24:42 +0100
committerAlex Auvolat <alex@adnab.me>2020-02-11 22:37:08 +0100
commita552f67e9433a476c49db0b7166538f1d3d68f47 (patch)
tree3f441555c5f38c47cc273cf14d61ed615047545c /nomad
parent348fac27bcacd395ed1420be258ca99674208e87 (diff)
downloadinfrastructure-a552f67e9433a476c49db0b7166538f1d3d68f47.tar.gz
infrastructure-a552f67e9433a476c49db0b7166538f1d3d68f47.zip
WIP (not tested) switch Postfix to bottin2 and use separate secrets
Diffstat (limited to 'nomad')
-rw-r--r--nomad/email.hcl29
1 files changed, 21 insertions, 8 deletions
diff --git a/nomad/email.hcl b/nomad/email.hcl
index 1d5c8c1..649231c 100644
--- a/nomad/email.hcl
+++ b/nomad/email.hcl
@@ -328,6 +328,27 @@ job "email" {
}
}
+ artifact {
+ source = "http://127.0.0.1:8500/v1/kv/configuration/email/postfix/ldap-account.cf.tpl?raw"
+ destination = "secrets/postfix/ldap-account.cf.tpl"
+ mode = "file"
+ }
+ template {
+ source = "secrets/postfix/ldap-account.cf.tpl"
+ destination = "secrets/postfix/ldap-account.cf"
+ }
+
+ artifact {
+ source = "http://127.0.0.1:8500/v1/kv/configuration/email/postfix/ldap-alias.cf.tpl?raw"
+ destination = "secrets/postfix/ldap-alias.cf.tpl"
+ mode = "file"
+ }
+ template {
+ source = "secrets/postfix/ldap-alias.cf.tpl"
+ destination = "secrets/postfix/ldap-alias.cf"
+ }
+
+
template {
data = "{{ key \"configuration/email/postfix/postfix.crt\" }}"
destination = "secrets/ssl/certs/postfix.crt"
@@ -347,14 +368,6 @@ job "email" {
destination = "secrets/postfix/header_checks"
}
template {
- data = "{{ key \"configuration/email/postfix/ldap-account.cf\" }}"
- destination = "secrets/postfix/ldap-account.cf"
- }
- template {
- data = "{{ key \"configuration/email/postfix/ldap-alias.cf\" }}"
- destination = "secrets/postfix/ldap-alias.cf"
- }
- template {
data = "{{ key \"configuration/email/postfix/main.cf\" }}"
destination = "secrets/postfix/main.cf"
}