diff options
author | Alex Auvolat <alex@adnab.me> | 2020-02-11 22:42:28 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-02-11 22:53:29 +0100 |
commit | cd6da5d52f7e869c83e4a55bf762d9d6b0c96b09 (patch) | |
tree | 248aeba32981585f7e2f5c8b6805028a30e53209 /nomad | |
parent | a552f67e9433a476c49db0b7166538f1d3d68f47 (diff) | |
download | infrastructure-cd6da5d52f7e869c83e4a55bf762d9d6b0c96b09.tar.gz infrastructure-cd6da5d52f7e869c83e4a55bf762d9d6b0c96b09.zip |
Switch dovecot to bottin2 & put secret in own consul key
Diffstat (limited to 'nomad')
-rw-r--r-- | nomad/email.hcl | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/nomad/email.hcl b/nomad/email.hcl index 649231c..d5cdc83 100644 --- a/nomad/email.hcl +++ b/nomad/email.hcl @@ -131,6 +131,17 @@ job "email" { } } + artifact { + source = "http://127.0.0.1:8500/v1/kv/configuration/email/dovecot/dovecot-ldap.conf.tpl?raw" + destination = "secrets/conf/dovecot-ldap.conf.tpl" + mode = "file" + } + template { + source = "secrets/conf/dovecot-ldap.conf.tpl" + destination = "secrets/conf/dovecot-ldap.conf" + perms = "400" + } + template { data = "{{ key \"configuration/email/dovecot/dovecot.crt\" }}" destination = "secrets/ssl/certs/dovecot.crt" @@ -141,11 +152,6 @@ job "email" { destination = "secrets/ssl/private/dovecot.key" perms = "400" } - template { - data = "{{ key \"configuration/email/dovecot/dovecot-ldap.conf\" }}" - destination = "secrets/conf/dovecot-ldap.conf" - perms = "400" - } } } |