Hey guys, how can I deploy my pulumi project to my...
# general
b
Hey guys, how can I deploy my pulumi project to my organization ? When i’m deploying the pulumi project with my access key, the stack creates under my personal account. Thanks 😄
m
use the fully qualified stack name when working in an organization. e.g.
pulumi stack select my-org/my-project/my-stack
You can
rename
the stack to a fully qualified stack name
pulumi -s my-stack stack rename my-org/my-project/my-stack
e
Note that rename WILL NOT let you move the project across orgs. You need to do that operation on the web console.
But otherwise yes, use fully qualified names when init'ing stacks. Also you might want to take a look at pulumi org set-default.
b
Great, Thanks guys. helped a lot.