Questions tagged [amazon-s3]

This is for questions on Amazon's cloud storage service.

1120 questions
0
votes
1 answer

How can I sync two S3-compliant buckets which have different credentials?

I've got a MinIO bucket (which uses the S3 API for access) and I want to copy all its data into an AWS S3 bucket. They both use the same API, but the I can't find a tool that lets me copy directly from one bucket to another using two sets of…
Mourndark
  • 159
  • 3
  • 14
0
votes
1 answer

CDN Rerouting on 404 (file not yet in synch with original storage)

Here is the problem. I've setup my app(on EC2) to store uploaded images directly on Amazon S3. I'd like to be able to serve static files(cdn) from my 'home' server so I wrote script that does sync from S3. But there is a window of (at least) one…
0
votes
1 answer

Seamless switch from NAT GATEWAY to VPC gateway

My team is currently burdened by the NAT Gateway costs and we would like to switch over to VPC Gateway endpoint to reduce the costs associated with all the EC2-S3 communication. at the same time, We would like to keep NAT gateway for any other…
0
votes
0 answers

How to assign an IAM role having the same permission set as the IPs have?

How to update the IAM policy below so that the IAM role, arn:aws:iam::7574333677569:role/dev-abc-webserver, also have permissions? { "Version": "2012-10-17", "Id": "Policy1517260196123", "Statement": [ { "Sid":…
sam23
  • 49
  • 1
  • 5
0
votes
1 answer

S3 static website is loading pretty slow on private window mode only

I'm not sure is this is an S3 issue or something with my website but would like to ask the community for some help. Configuration: I have a static website (about 700KB) hosted on S3. My .css and .js is gzipped with the appropriate metadata set up.…
0
votes
0 answers

AWS S3 > Life Cycle Policy > to delete S3 bucket profiles not utilised over 3 months?

I am looking into possibility to setup a policy to delete the profiles within S3 bucket that have not been used over 3+ months. Is that possible and where would I setup? Would appreciate your guidance.
BiMi
  • 1
0
votes
1 answer

Can't access static site S3, Cloudfront, Route53

I apologize if this needs to be split into two questions, but I'm trying to set up a static site using S3, a CloudFront distribution, and a Route53 domain. If I try to access laszloffy.com, I receive a DNS_PROBE_FINISHED_NXDOMAIN error. If I try…
0
votes
0 answers

Identify the profiles stored in S3 Bucket?

New to this, and new to AWS in general. Currently reviewing the profiles in S3 bucket to identify which ones can be deleted. it is not easy to identify whom it belongs to as its a SHA256 generated code. enter image description here Is there an easy…
BiMi
  • 1
0
votes
1 answer

Does AWS CLI bring data across local network when doing `aws s3 mv` between two S3 locations?

When moving data between two S3 locations using the AWS CLI, for example: aws s3 mv s3://bucket/prefix s3://bucket/other-prefix Is the data downloaded to your local computer and then re-uploaded? Or does it stay in the data center? Is it different…
Nick
  • 121
  • 3
0
votes
0 answers

AWS CLI Unknown options: --include,*.m3u8 For S3

Can the AWS CLI tool be used to only list/retrieve certain file types in S3? I was trying: aws s3 ls --summarize --human-readable --recursive s3://cloudfront.abc.com/CDNSource/hls/ --include "*.m3u8" but receiving "Unknown options:…
0
votes
3 answers

Automatically Login & Startup A Windows Program On Amazon's EC2 Service

How can I automatically start a program on Amazon's EC2 Windows 2008 web servers? For example, if I wanted to test the "Digg effect" on a web page of mine, how could I open 100 windows 2008 servers at once, each loading one (or two?) instances of…
darkAsPitch
  • 1,931
  • 4
  • 25
  • 42
0
votes
0 answers

Sensitive HTML file served by AWS S3 website hosting

How must I configure an S3 bucket to serve sensitive content via website hosting (where the bucket name is the same as the DNS record)? The website will only be reachable from within intranet. Since it's sensitive material, the bucket and its…
GI D
  • 11
0
votes
0 answers

One way s3 sync - Bucket to local only

This is the scenario: Company A creates a bucket, and periodically uploads images to it, deletes or replaces some, etc Company B needs to sync with the bucket - they download the images from it and store it locally (think along the lines of a…
FiddlingAway
  • 123
  • 6
0
votes
0 answers

public s3 bucket file download getting access denied error for files transfered from another account

Hi i have created a bucket in s3 and made public, If i upload any file i am able to download the file with url from public. But when I did a copy of all s3 files from another account (which also had public permissions) to this new bucket in…
0
votes
1 answer

Why does an S3 to S3 copy care about VPCs? Related to error: "VPC endpoints do not support cross-region requests."

Goal: Get files from Bucket 1 in ca-central-1 in Account A to Bucket 2 in us-east-1 in Account B using the AWS CLI from a third machine using an the IAM role with correct S3 read and write permissions (assume unless that's unlikely) I got the…