diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-03-27 21:54:11 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-03-27 21:54:11 +0100 |
commit | 8645c7b332485b025f3b15d1e1a53ac8b3fa62ff (patch) | |
tree | b6e70827dedb92af99d0d17a0773c935ad6721f0 | |
parent | ca482f7e3e86fdcc2d12f44adba3140ff06ce85d (diff) | |
download | infrastructure-8645c7b332485b025f3b15d1e1a53ac8b3fa62ff.tar.gz infrastructure-8645c7b332485b025f3b15d1e1a53ac8b3fa62ff.zip |
Fix a stupid error
-rw-r--r-- | nomad/jitsi.hcl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nomad/jitsi.hcl b/nomad/jitsi.hcl index 09d9ccd..6b54d14 100644 --- a/nomad/jitsi.hcl +++ b/nomad/jitsi.hcl @@ -96,12 +96,12 @@ job "jitsi" { } template { - data = "{{ key \"secrets/jitsi/auth.jitsi.deuxfleurs.fr.crt\" }}" - destination = "secrets/certs/auth.jitsi.deuxfleurs.fr.crt" + data = "{{ key \"secrets/jitsi/jitsi.deuxfleurs.fr.crt\" }}" + destination = "secrets/certs/jitsi.deuxfleurs.fr.crt" } template { - data = "{{ key \"secrets/jitsi/auth.jitsi.deuxfleurs.fr.key\" }}" - destination = "secrets/certs/auth.jitsi.deuxfleurs.fr.key" + data = "{{ key \"secrets/jitsi/jitsi.deuxfleurs.fr.key\" }}" + destination = "secrets/certs/jitsi.deuxfleurs.fr.key" } template { data = "{{ key \"secrets/jitsi/global_env\" }}" |