how do i login to cloud stack with pulumi cli, the...
# general
c
how do i login to cloud stack with pulumi cli, the stack location is: https://app.pulumi.com/asdasddas/cluster/wadsaadds.cluster.dev With command: "pulumi login --cloud-url https://app.pulumi.com/asdasddas" it returns "... is not a valid self-hosted backend, use
pulumi login
without arguments to log into the Pulumi Cloud backend"
l
Hey @cool-table-60773, assuming I understand correctly, you should just be able to log in to Pulumi Cloud using
pulumi login
(that is, without any arguments). Once you've done that, you could use e.g.
pulumi stack select
to pick the stack you are interested in, or specify it on a per-command basis using
-s
e.g.
pulumi preview -s org/project/stack
. Does that make sense/help?
c
Right, that worked, ty.
l
All good 👍