Can I rename a Pulumi project? If so, what are the...
# general
l
Can I rename a Pulumi project? If so, what are the steps to do it?
c
Yes, but it’s kind of tricky. I believe it’s just a matter of running
pulumi stack rename
and specifying the fully-qualified stack name. For example
pulumi stack rename ringo/new-project/name
. Just be sure to update the
name
field in the
Pulumi.yaml
file to match the new project name. (Since you’ll get errors otherwise, trying to update a stack where the project name doesn’t match what is in
Pulumi.yaml
.)
👍 1