55
loading...
This website collects cookies to deliver better user experience
app.pulumi.com
for hosting you backend, the providers automatically take into account your project name, as well as the stack name. Therefore if you run this:pulumi stack init dev
demo
you’ll have stack calledmy-awesome-org/demo/dev
. However, when it comes to using a custom backend, the default syntax doesn’t provide this separation.dev
, therefore you will need to namespace the stack manually.pulumi stack init demo.dev
var stackReference = new StackReference("shared", new StackReferenceArgs { Name = "demo.dev" });