Reputation: 3234
I have a private service, say, employee-service
running in AppRunner
which is supposed to be accessible only within my VPC.
AppRunner
generates a private endpoint https://bf8dsd7yud.myregion.awsapprunner.com/
. I would like to access it as https://employee-service/
within my VPC as we do for kubernetes clusterIP. is this possible?
Upvotes: 0
Views: 211
Reputation: 764
You could accomplish that using a Route53 private hosted zoned. You would need to create a CNAME, for example: CNAME - employee-service.internaldmain -> https://bf8dsd7yud.myregion.awsapprunner.com
Upvotes: 0