Hello comunity of Pulumi, I have one question. Is ...
# general
h
Hello comunity of Pulumi, I have one question. Is there a way that pulumi doesn’t append an id on every resources after running
pulumi up
?
g
If you explicitly set a name on your resources (e.g.
name: "webserver"
) then Pulumi won't append values to the resource name.
g
Note that explicitly setting a name has implications for replace behavior. For resource types that must have unique names, an update will have to delete the existing resource before replacing it. Auto-naming allows the engine to create the updated resource before deleting the old one.
👍 1