893 B
893 B
layout | page_title | sidebar_current | description |
---|---|---|---|
aws | AWS: aws_vpc_endpoint | docs-aws-resource-vpc-endpoint | Provides a VPC Endpoint resource. |
aws_vpc_endpoint
Provides a VPC Endpoint resource.
Example Usage
Basic usage:
resource "aws_vpc_endpoint" "private-s3" {
vpc_id = "${aws_vpc.main.id}"
service_name = "com.amazonaws.us-west-2.s3"
}
Argument Reference
The following arguments are supported:
vpc_id
- (Required) The ID of the VPC in which the endpoint will be used.service_name
- (Required) The AWS service name, in the formcom.amazonaws.region.service
.policy_document
- (Optional) A policy to attach to the endpoint that controls access to the service.route_table_ids
- (Optional) One or more route table IDs.
Attributes Reference
The following attributes are exported:
id
- The ID of the VPC endpoint.