We are using Keycloak for managing SSO for our multi-tenancy application, where each tenant has their own realm. What would the approach be for securing our individual microservices?
My idea is to introduce a new realm where I add clients where each client corresponds to a microservice.
I am also considering just using one client in one realm for my microservices and enabling “Fine-grained authorization” to add each of our microservices as resources - is this a valid approach? Could the resources potentially invoke and access each other in that case? My end goal is to protect our microservices and allow microservices to authenticate and invoke each other.
I appreciate all the help I can get!