inputs.yaml 844 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. ---
  2. # Kestra Inputs Template
  3. # ---
  4. #
  5. # Inputs is a list of dynamic values passed to the flow at runtime.
  6. #
  7. id: inputs
  8. namespace: # your-namespace
  9. inputs:
  10. - id: string
  11. type: STRING
  12. - id: optional
  13. type: STRING
  14. required: false
  15. - id: int
  16. type: INT
  17. - id: bool
  18. type: BOOLEAN
  19. - id: float
  20. type: FLOAT
  21. - id: instant
  22. type: DATETIME
  23. - id: date
  24. type: DATE
  25. - id: time
  26. type: TIME
  27. - id: duration
  28. type: DURATION
  29. - id: file
  30. type: FILE
  31. - id: optionalFile
  32. type: FILE
  33. - id: instantDefaults
  34. type: DATETIME
  35. defaults: "2013-08-09T14:19:00Z"
  36. - id: json
  37. type: JSON
  38. - id: uri
  39. type: URI
  40. - id: secret
  41. type: SECRET
  42. - id: nested.string
  43. type: STRING
  44. tasks:
  45. - id: using_inputs
  46. type: io.kestra.core.tasks.log.Log
  47. message: "{{ inputs.string }}"