I have been tasked to create a cross account access to S3 buckets. I created a cross account role and managed to access the objects in S3 buckets from another account. But I was asked to use PrivateLink for a secure connection. I know we can create a VPC endpoint and access objects in S3 bucket from private instances in the same account. How do we use PrivateLink to access the objects in S3 bucket from another account? Is it possible?
How to provide access to S3 buckets in a different AWS account using PrivateLink?
215 Views Asked by J R At
1
There are 1 best solutions below
Related Questions in AWS-PRIVATE-LINK
- Error - If the target type is ALB, the target must have at least one listener that matches the target group port or any specified p ort overrides
- Replace load balancer behind a privatelink to migrate users?
- AWS PrivateLink - Private connections for On-prem?
- Can AWS Private link be used within a same VPC?
- How to provide access to S3 buckets in a different AWS account using PrivateLink?
- AWS how does interface endpoint is accessible from other subnets
- AWS Endpoint Service(PrivateLink) to many internal services
- How does privatelink work under the hood with hyperplane and blackfoot edge devices?
- Is cloudfront or the global accelerator using private link?
- EC2 Image Builder is not working in Private Subnet
- elasticsearch http requests over aws privatelink
- AWS R53 api via PrivateLink
- Connection between Confluent kafka cluster and Elasticsearch cluster (elastic cloud)
- alternatives to Secrets Manager VPC Endpoint for rotating secrets in AWS
- VPC endpoint creation fails with InvalidServiceName with aws-java-sdk
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, it is possible.
You just need to use VPC Endpoint type Gateway for S3 in your account.
It will allow you to access any bucket in any account that you have permission.
A gateway endpoint is available only in the Region where you created it. Be sure to create your gateway endpoint in the same Region as your S3 buckets.
See more info on documentation below:
https://docs.aws.amazon.com/vpc/latest/privatelink/vpc-endpoints-s3.html