I have a static web site hosted on S3 in the free tier. This tier gives me "2,000 Put, Copy, Post or List Requests of Amazon S3" which I am regularly exceeding.
Given that my web site has 92 files in it when rendered using Next.js and I keep a test and prod version of the web site, does this mean that every time I deploy a new version it counts as 184 updates to S3?
Extra info: I do a very simple deployment: build on a local Jenkins, saving a tar file to an artefacts S3 bucket, untar to to local then use a "aws s3 sync" command to copy to my bucket.