fix: appease the linter

Signed-off-by: David Flanagan <david@rawkode.dev>
This commit is contained in:
David Flanagan
2022-04-01 18:40:43 +01:00
parent 4074b5d264
commit 88748d3563
3 changed files with 15 additions and 21 deletions

View File

@@ -7,23 +7,17 @@ import (
dagger.#Plan & {
client: {
filesystem: {
"./": read: {
contents: dagger.#FS
}
}
filesystem: "./": read: contents: dagger.#FS
env: {
PULUMI_CONFIG_PASSPHRASE: dagger.#Secret
PULUMI_ACCESS_TOKEN: dagger.#Secret
}
}
actions: {
rawkode: pulumi.#Up & {
stack: "test"
stackCreate: true
runtime: "nodejs"
accessToken: client.env.PULUMI_ACCESS_TOKEN
source: client.filesystem."./".read.contents
}
actions: rawkode: pulumi.#Up & {
stack: "test"
stackCreate: true
runtime: "nodejs"
accessToken: client.env.PULUMI_ACCESS_TOKEN
source: client.filesystem."./".read.contents
}
}