Hi all, I want Pulumi to create a blob in a storag...
# azure
i
Hi all, I want Pulumi to create a blob in a storage container only if a blob with that name doesn't already exist in that container. If it does exist, I don't want Pulumi to do anything with it. Basically I'm hoping pulumi will only create the file upon first creating the container resource, and after that leave it alone. Is this possible? It doesn't look like azure-native has a function to get existing blobs, so I was looking into StackReference.
b
Is there any reason that you can’t just create the resource? If it’s not there, Pulumi will create it, but if Pulumi detects that it’s there and no change has been made then it’ll ignore it. You can also set extra inputs to ignore using
ignoreChanges
: https://www.pulumi.com/docs/concepts/options/ignorechanges/