Connect to Collate over AWS PrivateLink
AWS PrivateLink lets you reach your Collate instance over private AWS networking instead of the public internet. Traffic stays on the AWS backbone, and your VPC doesn’t need an internet gateway, NAT gateway, or public IP addresses to reach Collate. Collate hosts the endpoint service. You create an interface VPC endpoint in your own AWS account that connects to it. This page covers the steps you perform on your side.PrivateLink is available for Collate SaaS instances. Contact your Collate representative to have it enabled for your instance before you begin.
How it works
- Collate creates a VPC endpoint service in front of your Collate instance and associates it with your instance’s public DNS name (for example,
yourcompany.getcollate.io). - You create an interface endpoint in your VPC that points at that service.
- Collate approves your connection request.
- With private DNS enabled, your existing Collate URL resolves to private IP addresses inside your VPC. Clients and ingestion jobs keep using the same hostname — no application changes are required.
What PrivateLink covers
PrivateLink secures traffic going into Collate. It supports:- Users reaching the Collate web interface
- Applications reaching the Collate API
- Ingestion services running on Hybrid SaaS
- The Hybrid Runner, which runs ingestion inside your own environment so credentials and data never leave it.
- Public interfaces restricted to Collate’s dedicated outbound IP for your instance. Ask your Collate representative for that address.
Before you begin
Exchange the following information with Collate. Collate provides you with:
You provide Collate with:
You also need permissions in your AWS account to create VPC endpoints and security groups (
ec2:CreateVpcEndpoint, ec2:DescribeVpcEndpointServices, and related actions).
Connecting from a different region
You don’t have to connect from the same region your Collate instance runs in. AWS PrivateLink supports cross-region interface endpoints, and Collate’s endpoint services support it. Tell Collate which region you’ll connect from so they can enable it on the endpoint service. Then note these differences:- You must explicitly enable cross-region connectivity on the endpoint and specify the service region.
- Availability Zones don’t need to align with Collate’s. You can use any AZs in your region.
- Private DNS is still supported, so your Collate hostname resolves normally.
- Both regions must be in the same AWS partition. For example, a commercial region can’t reach a GovCloud region.
- Cross-region traffic incurs AWS inter-region data transfer charges in addition to standard PrivateLink charges.
Step 1: Create the interface endpoint
- AWS Console
- AWS CLI
- Open the Amazon VPC console and choose Endpoints > Create endpoint.
- For Name tag, enter something identifiable, such as
collate-privatelink. - For Type, choose Endpoint services that use NLBs and GWLBs.
- If you’re connecting from a different region than Collate, select Enable cross-region endpoint and choose Collate’s Service region.
- For Service name, enter the service name Collate gave you, then choose Verify service. You should see Service name verified.
- For VPC, choose the VPC that needs access to Collate.
- For Subnets, select one subnet per Availability Zone you want to reach Collate from — you can’t select two subnets in the same AZ. AWS creates an endpoint network interface in each. Choose at least two AZs for resiliency.
- For IP address type, choose IPv4.
- AWS assigns IPs from each subnet’s range automatically. To pin them, select Designate IP addresses and enter an address from each subnet’s range.
- For Security groups, select a security group that allows inbound HTTPS. See Step 2.
- Leave Enable DNS name unchecked for now. You’ll enable it in Step 4, after Collate accepts the connection.
- Choose Create endpoint.
Create the endpoint with private DNS disabled. Enabling it while the connection is still pending causes the request to fail, because AWS can’t associate the private hosted zone until the connection is accepted.
Step 2: Configure the security group
The security group attached to the endpoint controls which clients can reach it. It needs to allow inbound HTTPS from the resources that talk to Collate.
Scope the source as tightly as your network policy allows. If your ingestion runners live in a specific set of subnets or security groups, reference those instead of the whole VPC CIDR.
Step 3: Wait for Collate to accept the connection
Collate’s endpoint service requires manual acceptance. After you create the endpoint it sits in thependingAcceptance state until Collate approves it.
Let your Collate contact know the endpoint has been created. You can check the state at any time:
available before continuing.
Validate the endpoint before enabling DNS
Before you turn on private DNS, confirm the endpoint itself carries traffic. This isolates a connectivity problem from a DNS problem, and it’s much easier to debug in this order. Find the endpoint’s private IPs under Endpoints > your endpoint > Subnets > IPv4 addresses. Then, from a host in the same VPC, send a request straight to one of those IPs with the Collate hostname in theHost header:
yourcompany.getcollate.io and return 200.
-k skips certificate validation, which is expected here — you’re connecting by IP, so the certificate name won’t match the address. This flag is only for this one-off check. Don’t carry it into normal client configuration.Step 4: Enable private DNS
Once the endpoint isavailable, enable private DNS so your existing Collate hostname resolves to the endpoint.
- AWS Console
- AWS CLI
- In the VPC console, choose Endpoints and select your endpoint.
- Choose Actions > Modify private DNS name.
- Select Enable private DNS name, then save.
Step 5: Verify connectivity
From an instance inside the VPC, confirm the Collate hostname now resolves to private addresses:10.x.x.x), not public ones.
Then confirm Collate responds over the private path:
200.
Once this succeeds, existing clients, browsers, and ingestion workloads inside the VPC reach Collate over PrivateLink automatically. No configuration changes are needed on their side.
Troubleshooting
Service name not found or cannot be verified
Service name not found or cannot be verified
Your AWS account hasn’t been added to the endpoint service allow list yet, or you’re connecting from a region Collate hasn’t enabled.Confirm with Collate that they’ve allow-listed your exact AWS account ID and enabled your region on the endpoint service. Also double-check the service name for typos — it includes Collate’s region, which may differ from yours.
Endpoint stuck in pendingAcceptance
Endpoint stuck in pendingAcceptance
This is expected until Collate accepts the connection request. Contact your Collate representative. The endpoint won’t pass traffic and private DNS can’t be enabled until the state is
available.Private DNS option is greyed out or fails to enable
Private DNS option is greyed out or fails to enable
Private DNS can only be enabled after the connection is accepted. Confirm the endpoint state is
available, and that enableDnsSupport and enableDnsHostnames are both true on your VPC.Hostname still resolves to a public IP
Hostname still resolves to a public IP
DNS may be cached. Flush the resolver cache on the client, or wait for the previous record’s TTL to expire.Also confirm you’re testing from inside the VPC associated with the endpoint. Resources outside that VPC — including on-premises hosts reaching your VPC over a VPN or Direct Connect — continue to resolve the public address unless you forward DNS to your VPC’s Route 53 Resolver.
Connection times out
Connection times out
This is almost always the security group. Confirm the endpoint’s security group allows inbound TCP 443 from the client’s IP range or security group, and that the client’s own outbound rules allow HTTPS to the endpoint.
On-premises clients can't resolve the Collate hostname
On-premises clients can't resolve the Collate hostname
Private DNS only applies within the VPC. To resolve the name from on-premises networks, create a Route 53 Resolver inbound endpoint in the VPC and forward the Collate domain to it from your on-premises DNS servers.