example-bucket-policies-vpc-endpoint
Example Bucket Policies for VPC Endpoints for Amazon S3
You can use Amazon S3 bucket policies to control access to buckets from specific Amazon Virtual Private Cloud (Amazon VPC) endpoints, or specific VPCs. This section contains example bucket policies that can be used to control Amazon S3 bucket access from VPC endpoints. To learn how to set up VPC endpoints, see VPC Endpoints in the Amazon VPC User Guide.
Amazon VPC enables you to launch AWS resources into a virtual network that you define. A VPC endpoint enables you to create a private connection between your VPC and another AWS service without requiring access over the internet, through a VPN connection, through a NAT instance, or through AWS Direct Connect.
A VPC endpoint for Amazon S3 is a logical entity within a VPC that allows connectivity only to Amazon S3. The VPC endpoint routes requests to Amazon S3 and routes responses back to the VPC. VPC endpoints change only how requests are routed. Amazon S3 public endpoints and DNS names will continue to work with VPC endpoints. For important information about using Amazon VPC endpoints with Amazon S3, see Gateway VPC Endpoints and Endpoints for Amazon S3 in the Amazon VPC User Guide.
VPC endpoints for Amazon S3 provide two ways to control access to your Amazon S3 data:
- You can control the requests, users, or groups that are allowed through a specific VPC endpoint. For information about this type of access control, see Controlling Access to Services with VPC Endpoints in the Amazon VPC User Guide.
- You can control which VPCs or VPC endpoints have access to your buckets by using Amazon S3 bucket policies. For examples of this type of bucket policy access control, see the following topics on restricting access.
Topics
Important
When applying the Amazon S3 bucket policies for VPC endpoints described in this section, you might block your access to the bucket without intending to do so. Bucket permissions that are intended to specifically limit bucket access to connections originating from your VPC endpoint can block all connections to the bucket. For information about how to fix this issue, see My bucket policy has the wrong VPC or VPC endpoint ID. How can I fix the policy so that I can access the bucket? in the AWS Support Knowledge Center.
Restricting Access to a Specific VPC Endpoint
The following is an example of an Amazon S3 bucket policy that restricts access to a specific bucket, examplebucket
, only from the VPC endpoint with the ID vpce-1a2b3c4d
. The policy denies all access to the bucket if the specified endpoint is not being used. The aws:sourceVpce
condition is used to specify the endpoint. The aws:sourceVpce
condition does not require an Amazon Resource Name (ARN) for the VPC endpoint resource, only the VPC endpoint ID. For more information about using conditions in a policy, see Specifying Conditions in a Policy.
Restricting Access to a Specific VPC
You can create a bucket policy that restricts access to a specific VPC by using the aws:sourceVpc
condition. This is useful if you have multiple VPC endpoints configured in the same VPC, and you want to manage access to your Amazon S3 buckets for all of your endpoints. The following is an example of a policy that allows VPC vpc-111bbb22
to access examplebucket
and its objects. The policy denies all access to the bucket if the specified VPC is not being used. The vpc-111bbb22
condition key does not require an ARN for the VPC resource, only the VPC ID.
Related Resources
- Bucket Policy Examples
- VPC Endpoints in the Amazon VPC User Guide