Provides a VPC Endpoint Service resource. Service consumers can create an Interface VPC Endpoint to connect to the service.
NOTE on VPC Endpoint Services and VPC Endpoint Service Allowed Principals: Terraform provides both a standalone VPC Endpoint Service Allowed Principal resource and a VPC Endpoint Service resource with an
allowed_principalsattribute. Do not use the same principal ARN in both a VPC Endpoint Service resource and a VPC Endpoint Service Allowed Principal resource. Doing so will cause a conflict and will overwrite the association.
Basic usage:
resource "aws_vpc_endpoint_service" "foo" {
acceptance_required = false
network_load_balancer_arns = ["${aws_lb.test.arn}"]
}
The following arguments are supported:
acceptance_required - (Required) Whether or not VPC endpoint connection requests to the service must be accepted by the service owner - true or false. network_load_balancer_arns - (Required) The ARNs of one or more Network Load Balancers for the endpoint service. allowed_principals - (Optional) The ARNs of one or more principals allowed to discover the endpoint service. In addition to all arguments above, the following attributes are exported:
id - The ID of the VPC endpoint service. state - The state of the VPC endpoint service. service_name - The service name. service_type - The service type, Gateway or Interface. availability_zones - The Availability Zones in which the service is available. private_dns_name - The private DNS name for the service. base_endpoint_dns_names - The DNS names for the service. VPC Endpoint Services can be imported using the VPC endpoint service id, e.g.
$ terraform import aws_vpc_endpoint_service.foo vpce-svc-0f97a19d3fa8220bc
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/vpc_endpoint_service.html