I'm working on a project with different microservices. Each one of them will be running on separate ports, of course. Say, one of them has endpoints /a, /b and /c. Among this, /b is internal only (meant to be used by other microservices, but NEVER to be exposed to public). How to make /b internal only? P.S. I'm going to deploy on AWS EC2, maybe with docker/kubernetes and a load balancer etc. I don't have that much idea of DevOps. All I want to know is, is it something which is configurable in those deployment tools, or I'll have to write my own logic in the endpoint handler function? Btw, since security is paramount, I won't mind adding two layers of protection, one through deployment tools (if available), another through programming logic. But how to do that? Any suggestion will be appreciated.Thanks in advance.
Submitted June 17, 2020 at 04:01PM by arpanbag001
No comments:
Post a Comment