variables.yaml 433 B

1234567891011121314151617
  1. ---
  2. # Kestra Variable Template
  3. # ---
  4. #
  5. # Variables is a list of static values passed to the flow at runtime.
  6. #
  7. id: variables # <- Replace with your task id...
  8. namespace: your-namespace # <- Replace with your namespace...
  9. variables:
  10. variable-name: "variable-value" # <- Replace with your variable name and value...
  11. tasks:
  12. - id: using_variables
  13. type: io.kestra.plugin.core.log.Log
  14. message: "{{ vars.variable-name }}"