You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great to have the vpc-endpoints submodule support AWS PrivateLink services as well. In general, any non-standard service that is supported by AWS' VPC Endpoints service.
Use Case
When partnering with external services, they often expose an AWS PrivateLink that customers can use. Since the vpc-endpoints submodule already supports the official AWS services, it would be prudent to support non-official services as well.
Describe Ideal Solution
The vpc-endpoints submodule supports the service_name in
data "aws_vpc_endpoint_service" "interface_endpoint_service" {
We could expose a new input, say, service_type that might accept 'internal' or 'external' as values. Based on that input, we could decide whether to use the service or service_name arguments in the aws_vpc_endpoint_service data source.
Alternatives Considered
I hacked my local vendored module to change service to service_name to experiment whether it would work.
Describe the Feature
It would be great to have the vpc-endpoints submodule support AWS PrivateLink services as well. In general, any non-standard service that is supported by AWS' VPC Endpoints service.
Use Case
When partnering with external services, they often expose an AWS PrivateLink that customers can use. Since the vpc-endpoints submodule already supports the official AWS services, it would be prudent to support non-official services as well.
Describe Ideal Solution
The vpc-endpoints submodule supports the
service_name
interraform-aws-vpc/modules/vpc-endpoints/main.tf
Line 62 in 3e61cf9
We could expose a new input, say,
service_type
that might accept 'internal' or 'external' as values. Based on that input, we could decide whether to use theservice
orservice_name
arguments in theaws_vpc_endpoint_service
data source.Alternatives Considered
I hacked my local vendored module to change
service
toservice_name
to experiment whether it would work.It worked straight-forward with no other change to the vendored module. That is why I thought that this might be easy to implement.
The text was updated successfully, but these errors were encountered: