user3600073
user3600073

Reputation: 1893

Spring Config Server for enterprise

I am trying to setup an enterprise level Spring Config Server which will be used by multiple config client applications across the company. As the encrypt.key should be common across multiple clients, is it possible to protect sensitive information of a client application from other client applications. Am I missing something? Please help me.

Upvotes: 0

Views: 122

Answers (1)

spencergibb
spencergibb

Reputation: 25177

That is one way to set things up. You can also let the config server handle decryption so the clients only get decrypted values and secure the connection from client to server using spring security.

Upvotes: 1

Related Questions