hi - I have recently added a Team organization , b...
# automation-api
d
hi - I have recently added a Team organization , but any new stack that I try to create always ends up in my personal org. How do I deploy a stack to the team organization? I tried specifying project name as {org}/{projectName}, but it complains saying
provided project name "org-project" doesn't match Pulumi.yaml
Copy code
var pulumiFunction = PulumiFn.Create(() => CreateComposites(args, resolvedOutputs, GetProvider(args)));
            var inlineProgramArgs = new InlineProgramArgs(ProjectType.ToString(), args.StackName, pulumiFunction);
            inlineProgramArgs.ProjectSettings.Name = $"{args.PulumiOrg.ToLower()}/{ProjectType}";
1
nvm - I changed the workdirectory and removed the generated Pulumi.yaml. then I used stackname as org/stackname. I didnt realize the hierarchy structure was in stack name rather than project name.