From bf022b3f1d3224c92b59ebf594e387d62ec12d35 Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Mon, 13 Dec 2021 23:13:09 +0000 Subject: [PATCH] Europa: add dagger.#Plan.input.params Signed-off-by: Solomon Hykes --- europa/stdlib/dagger/plan.cue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/europa/stdlib/dagger/plan.cue b/europa/stdlib/dagger/plan.cue index 82f66c93..239af48f 100644 --- a/europa/stdlib/dagger/plan.cue +++ b/europa/stdlib/dagger/plan.cue @@ -8,8 +8,12 @@ package dagger #DAG: { // Receive inputs from the client input: { + // Receive directories directories: [name=string]: _#inputDirectory - secrets: [name=string]: _#inputSecret + // Securely receive secrets + secrets: [name=string]: _#inputSecret + // Receive runtime parameters + params: [name=string]: _ } // Send outputs to the client