This message was deleted.
# getting-started
s
This message was deleted.
b
are you setting an actual
/org/project/stack
?
f
Sorry, fairly new. I assume with that you mean this:
Copy code
orgName := "org"
	projectName := "proj"
	stackName := auto.FullyQualifiedStackName(orgName, projectName, "stack")

	// create or select a stack matching the specified name and project.
	// this will set up a workspace with everything necessary to run our inline program (deployFunc)
	s, err := auto.UpsertStackInlineSource(ctx, stackName, projectName, deployFunc)
	if err != nil {
		log.Printf("Failed to create Stack: %v\n", err)
	}
I would assume that auto.UpsertStackInlineSource is doing what needs to be done to set it
b
yeah, you'd need access to the org called
org
for that to work, do you have a pulumi login?
f
I do, I just tested it as I assumed you will come with that
But I do not have any access to any Org. So I removed it and it works like a charm
Ty
b
what's your login name? replace
orgName := "org"
with
orgName := "my-pulumi-login-name"
🙏 1
👍 1