Allow disabling auth for uchiwa
diff --git a/sensu/files/uchiwa.json b/sensu/files/uchiwa.json
index 54a2011..574ab32 100644
--- a/sensu/files/uchiwa.json
+++ b/sensu/files/uchiwa.json
@@ -13,8 +13,10 @@
   "uchiwa": {
     "host": "{{ dashboard.bind.address }}",
     "port": {{ dashboard.bind.port }},
+    {%- if dashboard.get('admin', {}).get('username', None) %}
     "user": "{{ dashboard.admin.username }}",
     "pass": "{{ dashboard.admin.password }}",
+    {%- endif %}
     "refresh": 5
   }
-}
\ No newline at end of file
+}