forked from Deuxfleurs/infrastructure
Add trimSpace to secrets to prevent a parsing bug
This commit is contained in:
parent
9337129336
commit
847540f7b7
3 changed files with 4 additions and 4 deletions
|
@ -243,7 +243,7 @@ jicofo {
|
|||
port = {{ env "NOMAD_PORT_xmpp_port" }}
|
||||
domain = "auth.jitsi"
|
||||
username = "focus"
|
||||
password = {{ key "secrets/jitsi/jicofo_pass" }}
|
||||
password = {{ key "secrets/jitsi/jicofo_pass" | trimSpace }}
|
||||
|
||||
// How long to wait for a response to a stanza before giving up.
|
||||
reply-timeout = 15 seconds
|
||||
|
|
|
@ -66,7 +66,7 @@ videobridge {
|
|||
port = {{ env "NOMAD_PORT_xmpp_port" }}
|
||||
domain = "auth.jitsi"
|
||||
username = "jvb"
|
||||
password = "{{ key "secrets/jitsi/jvb_pass" }}"
|
||||
password = "{{ key "secrets/jitsi/jvb_pass" | trimSpace }}"
|
||||
muc_jids = "jvbbrewery@internal.auth.jitsi"
|
||||
# The muc_nickname must be unique across all jitsi-videobridge instances
|
||||
muc_nickname = "unique-jvb-server"
|
||||
|
|
|
@ -33,8 +33,8 @@ job "jitsi" {
|
|||
|
||||
template {
|
||||
data = <<EOF
|
||||
JICOFO_AUTH_PASSWORD={{ key "secrets/jitsi/jicofo_pass" }}
|
||||
JVB_AUTH_PASSWORD={{ key "secrets/jitsi/jvb_pass" }}
|
||||
JICOFO_AUTH_PASSWORD={{ key "secrets/jitsi/jicofo_pass" | trimSpace }}
|
||||
JVB_AUTH_PASSWORD={{ key "secrets/jitsi/jvb_pass" | trimSpace }}
|
||||
EOF
|
||||
destination = "secrets/global_env"
|
||||
env = true
|
||||
|
|
Loading…
Reference in a new issue