I’m getting the following error when I try to exec...
# dotnet
f
I’m getting the following error when I try to execute pulumi up in azure devops pipelines (which is using the pulumi task with the az backend)
error: no stack named 'cde' found
However when I execute this locally (using my PULUMI_ACCESS_TOKEN) everything works fine. Any ideas?
c
Are you sure that the Pulumi access token you are using in the Azure Pipelines build has access to that stack? If the access tokens are not the same, is the
cde
stack under your personal account?
f
I fixed it, the stack was not created, so I just added the parameter createStack: true in my pipeline.