Connect SAP Private Link Service to AWS Private Link Service (Kyma)
Connect SAP Private Link service to Amazon Web Services Private Link Service and bind the service instance on a Kyma cluster.
Overview
You will learn
- How to create an SAP Private Link instance to connect to your AWS Private Link Service using kubectl CLI
- How to bind the service instance to your Kyma cluster using kubectl CLI SAP Private Link service establishes a private connection between applications running on SAP BTP and selected services in your own IaaS provider accounts. By reusing the private link functionality of our partner IaaS providers, you can access your services through private network connections to avoid data transfer via the public internet.
Prerequisites
Prerequisites
- You have a global account and subaccount on SAP Business Technology Platform with SAP Private Link service entitlement: Set Up SAP Private Link service .
- You have created an AWS Endpoint Service in the Amazon VPC Console. See Create a service powered by AWS PrivateLink. When creating the Endpoint Service, make sure you allowlist the SAP BTP CF AWS Account IDs as described in Only allow requests from SAP BTP CF’s AWS account.
- You have enabled Kyma Runtime and configured kubectl CLI. See Enable SAP BTP, Kyma Runtime Using the Command Line
Steps
Intro

After you’ve logged in as described in Enable SAP BTP, Kyma Runtime Using the Command Line, Step 1,, you can check all available entitlements for your subaccount. Open a command prompt and enter the following command:
btp list accounts/entitlementsYou can now see a list of service names and service plans, as shown in this example:
$ btp list accounts/entitlements
Showing entitlements for subaccount 9be57735-1234-1234-1234-0123456789ab:
service name service plan quota
...
privatelink standard 8
...Make sure you can find privatelink under the service name column in the output.
To create and enable a private link, you need to define the connection to the service first. To do so, you need the service name of the endpoint service that you created as part of the prerequisites:
Go to the AWS VPC console.

AWS Endpoint Service Navigate to the Endpoint Services.
Search for the endpoint service you want to connect, select it and copy the Service name from the Details tab. You need it in the next step.

Currently, you do not have any service instances enabled. Therefore, you need to create one. To create a new private link, you need the following information:
- offering (
privatelink), - plans (
standard), - a unique name (for instance,
privatelink-test), - service name from AWS (for example,
com.amazonaws.vpce.us-east-1.<service-id>).
Enter the following command and fill in the neccessary information:
kubectl create -f - <<EOF
apiVersion: services.cloud.sap.com/v1
kind: ServiceInstance
metadata:
name: privatelink-test
spec:
serviceOfferingName: privatelink
servicePlanName: standard
parameters:
serviceName: "com.amazonaws.vpce.us-east-1.<service-id>"
requestMessage: Please Approve
EOFIf the creation of the service instance was accepted, you receive a success message telling you to proceed.
Tip: You can edit
requestMessage: ...to contain any text that provides more information to the approver.
Tip: Depending on the chosen service type, you might need additional parameters. Please check the list of supported services and what are the required parameters in your case.
To check the current status of the newly created service instance, you need the name of your service instance (in this example privatelink-test). Type in the following:
kubectl get ServiceInstance privatelink-test -o wideUnder “status”, “ready”, and “message”, you can see the current status.
NAME OFFERING PLAN STATUS READY AGE ID MESSAGE
privatelink-test privatelink standard CreateInProgress False 13s <some UUID> ServiceInstance is being createdExecute this command again, in case there’s no change in the current status. If you receive an error message, go back to the previous steps.
Security Info: In a scenario in which the initiator of the private link connection doesn’t have access to the Azure Portal to approve the newly private endpoint connection him- or herself, please reach out to the person responsible for approving the connection and share the endpoint name responsibly.
urn to the AWS VPC console:
- Navigate to the Endpoint Services.
- Select the endpoint service you want to connect to.
- Go to Endpoint Connections.
- Search for the endpoint ID and select the connection request.
- Accept the endpoint connection request by pressing on Actions > Accept endpoint connection request.

You should now receive a success message that the approval is pending.
Security Info: In a scenario in which the person that approves the endpoint connection wasn’t the one that created the Private Link Service in the first place, please verify that the connection originated from a trustworthy origin (for instance, a colleague asking for approval via e-mail). This verification process prevents malicious misuse of resource ids.
To check the current status of the newly created service instance, you need the name of your service instance (in this example privatelink-test). Type in the following:
kubectl get ServiceInstance privatelink-test -o wideYou should see the following success message:
NAME OFFERING PLAN STATUS READY AGE ID MESSAGE
privatelink-test privatelink standard Created True 2m <some UUID> ServiceInstance provisioned successfullyWhen service binding is created Private Link service enables network access to the IP address associated with the Private Endpoint.
To create a new binding, you need the following information:
- unique name of the binding (for example
privatelink-binding-test) - the name of the service instance (
privatelink-test) - unique name of the secret that will be created (for example
privatelink-secret-test)
Enter the following command to create a new binding with the example information:
kubectl create -f - <<EOF
apiVersion: services.cloud.sap.com/v1
kind: ServiceBinding
metadata:
name: privatelink-binding-test
spec:
serviceInstanceName: privatelink-test
secretName: privatelink-secret-test
EOFIf the command is successful, a kubernetes secret with the same name as specified in secretName is created. The secret stores information about the private link endpoint in its hostname field. Use the following command to print the hostname field from the secret:
kubectl get secret privatelink-secret-test -o jsonpath='{.data.hostname}' | base64 --decodeAs an example the output might look like the following:
vpce-0d83d112233445566-5ponfzl4.vpce-svc-09112233445566777.us-east-1.vpce.amazonaws.comCongratulations! You have successfully completed the tutorial.
Resources
Discussion
Share feedback on this tutorial or join the conversation in SAP Community.