Hello! would anyone be able to point me to the def...
# general
q
Hello! would anyone be able to point me to the definitions of these operations shown in the Pulumi console. Specifically interested in what
delete-replaced
means?
l
It means that in order to update the Pulumi resource, the provider resource had to be deleted and re-created. Not all resources allow all properties to be updated.
👍 1
I'm not aware of any definition of these terms in this context, but you may be able to infer all the meaning by reading this page: https://www.pulumi.com/docs/intro/concepts/resources
q
Thanks @little-cartoon-10569
👍 1
@little-cartoon-10569 does this relate at all to the deleteBeforeReplace option?
l
That's relevant. With that option, any time there's a delete-replaced action, the delete happens before the create. When possible, Pulumi prefers to create before the delete. For things like security groups, this allows 100% "uptime". When you delete things like before creating their replacements, then you briefly lose access (or whatever functionality they provide).