questions.yaml 601 B

12345678910111213141516171819202122232425
  1. groups:
  2. - name: Network Configuration
  3. description: Configure Network for Nginx
  4. questions:
  5. - variable: network
  6. label: ""
  7. group: Network Configuration
  8. schema:
  9. type: dict
  10. attrs:
  11. - variable: web_port
  12. label: WebUI Port
  13. description: The port for Nginx WebUI
  14. schema:
  15. type: int
  16. default: 8080
  17. required: true
  18. - variable: some_new_field
  19. label: Some New Field
  20. description: Some new field
  21. schema:
  22. type: int
  23. default: 0
  24. required: true