2024-04-21 12:02:19 +02:00
|
|
|
---
|
2024-04-19 15:28:52 +02:00
|
|
|
# Kestra Variable Template
|
|
|
|
# ---
|
2024-04-21 11:59:31 +02:00
|
|
|
#
|
2024-12-03 14:43:56 +01:00
|
|
|
# Variables is a list of static values passed to the flow at runtime.
|
2024-04-19 15:28:52 +02:00
|
|
|
#
|
|
|
|
|
2024-12-03 14:43:56 +01:00
|
|
|
id: variables # <- Replace with your task id...
|
2024-12-27 11:45:43 +01:00
|
|
|
namespace: your-namespace # <- Replace with your namespace...
|
2024-04-19 15:28:52 +02:00
|
|
|
|
|
|
|
variables:
|
2024-12-03 14:43:56 +01:00
|
|
|
variable-name: "variable-value" # <- Replace with your variable name and value...
|
2024-04-19 15:28:52 +02:00
|
|
|
|
|
|
|
tasks:
|
|
|
|
- id: using_variables
|
2024-12-03 14:43:56 +01:00
|
|
|
type: io.kestra.plugin.core.log.Log
|
2024-04-19 15:28:52 +02:00
|
|
|
message: "{{ vars.variable-name }}"
|