pulumi keeps deleting the existing s3 bucket eventhough the name has not been changed #13114
Labels
area/docs
Improvements or additions to documentation
impact/first-48
This bug is likely to be hit during a user's first 48 hours of product evaluation
File: content/docs/iac/get-started/aws/deploy-changes.md
// Create an AWS resource (S3 Bucket)
var bucket = new Bucket("my-bucket", new()
{
Website = new BucketWebsiteArgs
{
IndexDocument = "index.html",
},
});
If you run pulumi up after creating the above object, pulumi tries to delete the above bucket and then creates it again.
The text was updated successfully, but these errors were encountered: