docs icon indicating copy to clipboard operation
docs copied to clipboard

pulumi keeps deleting the existing s3 bucket eventhough the name has not been changed

Open sunmiller opened this issue 1 year ago • 1 comments

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.

sunmiller avatar Oct 12 '24 17:10 sunmiller