input to inputs

Signed-off-by: Richard Jones <richard@dagger.io>
This commit is contained in:
Richard Jones
2021-12-17 11:24:50 -07:00
parent 3c0d9c5acc
commit 03a740ff1e
6 changed files with 30 additions and 9 deletions

View File

@@ -3,7 +3,7 @@ package engine
// A deployment plan executed by `dagger up`
#Plan: {
// Receive inputs from the client
input: {
inputs: {
// Receive directories
directories: [string]: _#inputDirectory
// Securely receive secrets

View File

@@ -7,7 +7,7 @@ package engine
// A special kind of program which `dagger` can execute.
#DAG: {
// Receive inputs from the client
input: {
inputs: {
// Receive directories
directories: [name=string]: _#inputDirectory
// Securely receive secrets
@@ -17,7 +17,7 @@ package engine
}
// Send outputs to the client
output: {
outputs: {
directories: [name=string]: _#outputDirectory
}