Home > Software design >  How to expose a service in AWS EKS that is just accessed through API Gateway
How to expose a service in AWS EKS that is just accessed through API Gateway

Time:06-28

I cant to expose a service that is currently running in an EKS Cluster, I don't want it to be exposed to the internet just inside the VPC.

What I'm looking for this is that I can access this service just using AWS API-Gateway

CodePudding user response:

This scenario can be fulfill by using a VPC endpoint to engage a NLB that front the service in EKS. Here's the example how to do it.

  • Related