Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

43 строки
1.6 KiB

  1. {
  2. "name": "Access Export",
  3. "description": "Access the services export.",
  4. "spec": [
  5. {
  6. "question_name": "SFTP Authorisation Method",
  7. "question_description": "Set whether you want to disable SFTP, use a password to connect to SFTP or connect with a more secure SSH key.",
  8. "required": true,
  9. "min": null,
  10. "max": null,
  11. "default": "{{ sftp_auth_method | string }}",
  12. "choices": "Disabled\nPassword\nSSH Key",
  13. "new_question": true,
  14. "variable": "sftp_auth_method",
  15. "type": "multiplechoice"
  16. },
  17. {
  18. "question_name": "SFTP Password",
  19. "question_description": "Sets the password of the 'sftp' account, which allows you to upload a multi-file static website by SFTP, as well as export the latest copy of your Matrix service. Must be defined if 'Password' method is selected. WARNING: You must set a strong and unique password here.",
  20. "required": false,
  21. "min": 0,
  22. "max": 64,
  23. "default": "{{ sftp_password }}",
  24. "choices": "",
  25. "new_question": true,
  26. "variable": "sftp_password",
  27. "type": "password"
  28. },
  29. {
  30. "question_name": "SFTP Public SSH Key (More Secure)",
  31. "question_description": "Sets the public SSH key used to access the 'sftp' account, which allows you to upload a multi-file static website by SFTP, as well as export the latest copy of your Matrix service. Must be defined if 'SSH Key' method is selected.",
  32. "required": false,
  33. "min": 0,
  34. "max": 16384,
  35. "default": "{{ sftp_public_key }}",
  36. "choices": "",
  37. "new_question": true,
  38. "variable": "sftp_public_key",
  39. "type": "text"
  40. }
  41. ]
  42. }