mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-02-25 15:00:46 +01:00
18 lines
433 B
YAML
18 lines
433 B
YAML
---
|
|
# Kestra Variable Template
|
|
# ---
|
|
#
|
|
# Variables is a list of static values passed to the flow at runtime.
|
|
#
|
|
|
|
id: variables # <- Replace with your task id...
|
|
namespace: your-namespace # <- Replace with your namespace...
|
|
|
|
variables:
|
|
variable-name: "variable-value" # <- Replace with your variable name and value...
|
|
|
|
tasks:
|
|
- id: using_variables
|
|
type: io.kestra.plugin.core.log.Log
|
|
message: "{{ vars.variable-name }}"
|