Forráskód Böngészése

kestra input variables

Christian Lempa 2 éve
szülő
commit
050b157cda
1 módosított fájl, 62 hozzáadás és 0 törlés
  1. 62 0
      kestra/inputs.yaml

+ 62 - 0
kestra/inputs.yaml

@@ -0,0 +1,62 @@
+# Kestra Inputs Template
+# ---
+# 
+# Inputs is a list of dynamic values passed to the flow at runtime. 
+# 
+
+id: inputs
+namespace: # your-namespace
+
+inputs:
+  - id: string
+    type: STRING
+
+  - id: optional
+    type: STRING
+    required: false
+
+  - id: int
+    type: INT
+
+  - id: bool
+    type: BOOLEAN
+
+  - id: float
+    type: FLOAT
+
+  - id: instant
+    type: DATETIME
+
+  - id: date
+    type: DATE
+
+  - id: time
+    type: TIME
+
+  - id: duration
+    type: DURATION
+
+  - id: file
+    type: FILE
+
+  - id: optionalFile
+    type: FILE
+
+  - id: instantDefaults
+    type: DATETIME
+    defaults: "2013-08-09T14:19:00Z"
+
+  - id: json
+    type: JSON
+
+  - id: uri
+    type: URI
+
+  - id: secret
+    type: SECRET
+
+  - id: nested.string
+    type: STRING
+
+tasks:
+  # your-tasks