This message was deleted.
# general
s
This message was deleted.
c
what I have is 1 project called demo, and under that muliple stacks
Copy code
demo
├── infra
│   ├── cassandra.go
│   ├── go.mod
│   ├── go.sum
│   ├── main.go
│   └── webserver.go
├── Pulumi.yaml
├── README.md
└── stacks
    ├── Pulumi.dev.yaml
    └── Pulumi.staging.yaml
and in Pulumi.yaml
Copy code
❯ cat demo/Pulumi.yaml
name: demo
runtime: go
description: A minimal Azure Go Pulumi program
config: stacks/ # all stack files are stored under stacks/ folder
main: infra/ # main.go stored under infra/ folder
s
ok, and how do you deploy a given stack?
c
pulumi stack select <stack name>
s
nice, will try, thanks.
👍 1