From 90426b40e86455d2a4f900ed6d1c3f1ffa35f93a Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Thu, 3 Oct 2024 19:37:27 -0500 Subject: [PATCH] unfortunate i'll spend more time on authorization piece later. --- kubernetes/apps/database/emqx/app/externalsecret.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/kubernetes/apps/database/emqx/app/externalsecret.yaml b/kubernetes/apps/database/emqx/app/externalsecret.yaml index a8188eb3..eb334eda 100644 --- a/kubernetes/apps/database/emqx/app/externalsecret.yaml +++ b/kubernetes/apps/database/emqx/app/externalsecret.yaml @@ -43,15 +43,18 @@ spec: }, { "user_id": "tasmota", - "password": "{{ .x_emqx_tasmota_password }}" + "password": "{{ .x_emqx_tasmota_password }}", + "is_superuser": true # Until I can figure out authorization in emqx }, { "user_id": "zwave", - "password": "{{ .x_emqx_homeassistant_password }}" + "password": "{{ .x_emqx_homeassistant_password }}", + "is_superuser": true # Until I can figure out authorization in emqx }, { "user_id": "zwave", - "password": "{{ .x_emqx_zwave_password }}" + "password": "{{ .x_emqx_zwave_password }}", + "is_superuser": true # Until I can figure out authorization in emqx } ]