hello is there a way to run `pulumi` local on CI/C...
# general
p
hello is there a way to run
pulumi
local on CI/CD pipeline ? it’s not finding my stack
w
Do you mean running pulumi with a local backend? I.e. you do
pulumi login --local
? And are you trying to have CICD update a stack that you created on your workstation? If so, that won’t work since the stack’s state only exists where you ran the the login command. For CICD, the best practice is to use a self-managed backend like S3 bucket or the Pulumi SaaS (which is free for individual use). https://www.pulumi.com/docs/intro/concepts/state/
p
ok didn’t know I could use S3 as a backend ty