From 37fd2e701d7e7c30f58602b589325f0c7c766b6f Mon Sep 17 00:00:00 2001 From: Backslash Date: Thu, 26 Sep 2024 09:15:07 +1000 Subject: [PATCH] Update env.j2 to support the new configuration --- roles/custom/matrix-element-call/templates/env.j2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/custom/matrix-element-call/templates/env.j2 b/roles/custom/matrix-element-call/templates/env.j2 index db25ed81b..71e9a0693 100644 --- a/roles/custom/matrix-element-call/templates/env.j2 +++ b/roles/custom/matrix-element-call/templates/env.j2 @@ -1,9 +1,10 @@ # Environment variables for Element Call ELEMENT_CALL_SERVER_URL=https://{{ matrix_element_call_domain }} LIVEKIT_SERVICE_URL={{ matrix_element_call_livekit_service_url }} +LIVEKIT_SECRET={{ matrix_element_call_livekit_dev_key }} JWT_SERVICE_URL={{ matrix_element_call_jwt_service_url }} # Optional additional environment variables provided by the user {% for key, value in matrix_element_call_environment_variables_additional.items() %} {{ key }}={{ value }} -{% endfor %} \ No newline at end of file +{% endfor %}