RamPrakash
RamPrakash

Reputation: 3234

Accessing Private Service in AppRunner

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

Answers (1)

Andres Bores
Andres Bores

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

Related Questions