mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-07 08:54:04 +01:00
17 lines
241 B
YAML
17 lines
241 B
YAML
|
# Kestra Variable Template
|
||
|
# ---
|
||
|
#
|
||
|
#
|
||
|
#
|
||
|
|
||
|
id: variables
|
||
|
namespace: # your-namespace
|
||
|
|
||
|
variables:
|
||
|
variable-name: "variable-value"
|
||
|
|
||
|
tasks:
|
||
|
- id: using_variables
|
||
|
type: io.kestra.core.tasks.log.Log
|
||
|
message: "{{ vars.variable-name }}"
|