Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

42 righe
1.5 KiB

  1. {
  2. "name": "Configure ma1sd",
  3. "description": "Configure ma1sd settings, ma1sd is a self-hosted identity server for Matrix.",
  4. "spec": [
  5. {
  6. "question_name": "Enable ma1sd",
  7. "question_description": "Set if ma1sd is enabled or not. If disabled your server will loose identity functionality (not recommended).",
  8. "required": false,
  9. "min": null,
  10. "max": null,
  11. "default": "{{ matrix_ma1sd_enabled | string | lower }}",
  12. "choices": "true\nfalse",
  13. "new_question": true,
  14. "variable": "matrix_ma1sd_enabled",
  15. "type": "multiplechoice"
  16. },
  17. {
  18. "question_name": "ma1sd Authentication Mode",
  19. "question_description": "Set the source of user account authentication credentials with the ma1sd.",
  20. "required": false,
  21. "min": null,
  22. "max": null,
  23. "default": "{{ ext_matrix_ma1sd_auth_store }}",
  24. "choices": "Synapse Internal\nLDAP/AD",
  25. "new_question": true,
  26. "variable": "ext_matrix_ma1sd_auth_store",
  27. "type": "multiplechoice"
  28. },
  29. {
  30. "question_name": "LDAP/AD Configuration",
  31. "question_description": "Settings for connecting LDAP/AD to the ma1sd service. (ignored if using Synapse Internal, see https://github.com/ma1uta/ma1sd/blob/master/docs/stores/README.md )",
  32. "required": false,
  33. "min": 0,
  34. "max": 65536,
  35. "default": {{ ext_matrix_ma1sd_configuration_extension_yaml | to_json }},
  36. "new_question": true,
  37. "variable": "ext_matrix_ma1sd_configuration_extension_yaml",
  38. "type": "textarea"
  39. }
  40. ]
  41. }