This message was deleted.
# general
s
This message was deleted.
b
Do you mean upload through Pulumi or upload through other means (AWS SDK/CLI/console)?
If you upload the file as part of your pulumi program then you'll have to use
protected: true
to stop it being deleted (don't forget to run
pulumi up
to register the protected property in the stack). If you create the bucket in Pulumi but upload the object through the AWS SDK/CLI/Console then you'll have to delete the object by using the AWS SDK/CLI/Console as well before you'll be able to delete the bucket using Pulumi
Does that help?