Hi all ! I am trying out Pulumi and used the S3 ba...
# general
w
Hi all ! I am trying out Pulumi and used the S3 backend option for storing state. Now when I want to switch back to the Pulumi managed backend service I get the following traceback whenever I try to login by running
pulumi login <https://app.pulumi.com>
Copy code
error: problem logging in: getting user info from <https://app.pulumi.com>: unmarshalling response object: invalid character '<' looking for beginning of value
Any help would be appreciated
b
Two things: 1. You don't need to point at the pulumi backend, that's the default 2. if you did want to, it would be
pulumi login <https://api.pulumi.com>
So you can just do:
Copy code
pulumi logout
pulumi login
w
Ah thanks a ton. That worked out 🙂
🎉 1