This message was deleted.
# general
s
This message was deleted.
s
Copy code
aws:ec2:SecurityGroup (...):
    error: deleting urn:pulumi:...::...::eks:index:Cluster$aws:ec2/securityGroup:SecurityGroup::...: 1 error occurred:
    	* deleting Security Group (...): DependencyViolation: resource ... has a dependent object
    	status code: 400, request id: ...
I have tried
pulumi refresh
to see if that would reconcile any issues, but the result remains the same.
Also, part of the reason I was trying to bring the stack down is because it was getting stuck going up on this resource:
Copy code
const userUploadsNotification = new aws.s3.BucketNotification(`uncle-user-uploads-notification`, {
  bucket: userUploadsBucket.id,
  queues: [
    {
      queueArn: userUploadsQueue.arn,
      events: [
        's3:ObjectCreated:*',
      ],
    },
  ],
});
Other than not using filterSuffix this is taken directly from the docs: https://www.pulumi.com/registry/packages/aws/api-docs/s3/bucketnotification/