From 1f99e427c51811ac020ea25cc21679a5869a93b8 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Mon, 20 Dec 2021 09:51:38 -0700 Subject: [PATCH] reconciling command formats Signed-off-by: Richard Jones --- stdlib/europa/dagger/engine/plan.cue | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/stdlib/europa/dagger/engine/plan.cue b/stdlib/europa/dagger/engine/plan.cue index 5fed2aa5..1b804a4e 100644 --- a/stdlib/europa/dagger/engine/plan.cue +++ b/stdlib/europa/dagger/engine/plan.cue @@ -63,14 +63,6 @@ _#inputSecret: { contents: #Secret { - @dagger(notimplemented) - - // Execute a command ON THE CLIENT MACHINE and read secret from standard output - command: [string, ...string] | string - // Execute command in an interactive terminal - // for example to prompt for a passphrase - interactive: true | *false - } | { // Read secret from a file ON THE CLIENT MACHINE _type: "SecretFile" path: string @@ -84,6 +76,7 @@ _#inputSecret: { command: { name: string args: [...string] + interactive: true | *false @dagger(notimplemented) // FIXME: https://github.com/dagger/dagger/issues/1268 } } }