This message was deleted.
# general
s
This message was deleted.
l
I also attempted this:
Copy code
go build
./foo
error: program failed: missing project name
ok, time to read the manual 😄
Pulumi is controlled primarily using the command line interface (CLI). It works in conjunction with the Pulumi service to deploy changes to your cloud apps and infrastructure.
🤔 1
kk, I got it. Any recommendation for something between Pulumi and the AWS SDK?
l
Have you seen the Automation API? https://github.com/pulumi/pulumi/issues/3901 This allows you to write programs that run without the CLI:
Copy code
go run main.go
...
node index.js
...
For go: https://pkg.go.dev/github.com/pulumi/pulumi/sdk/v2/go/x/auto Typescript will be available in next week's release, but here's an example: https://github.com/EvanBoyle/automation-api-examples/tree/main/typescript/inlineProgram We also have an #C019YSXN04B that you can join to discuss.
There are some talk linked in that channel from the cloud engineering summit yesterday where a few folks are automating kubernetes using the Automation API.
g
We also have an operator you might be interested in: https://www.pulumi.com/blog/pulumi-kubernetes-operator/
l
This is great stuff, I will dig deeper into it. Thank you!