Spring Microservice

Spring Cloud Config 서비스와 Vault 연동을 통한 보안 설정 관리 및 UI 활용

헬로우월드 2025. 3. 9. 11:25

🔐 Spring Cloud Config와 HashiCorp Vault 연동하기

 

출처 : https://github.com/ihuaylupo/manning-smia/tree/master/chapter5

 

manning-smia/chapter5 at master · ihuaylupo/manning-smia

Spring Microservices in Action - Second Edition - Code Examples - ihuaylupo/manning-smia

github.com

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 


# psql -U postgres -d ostock_dev
psql (17.4 (Debian 17.4-1.pgdg120+2))
Type "help" for help.

ostock_dev=#

 

# SELECT * FROM organizations;

           organization_id            |     name     |  contact_name   |   contact_email    | contact_phone 
--------------------------------------+--------------+-----------------+--------------------+---------------
 e6a625cc-718b-48c2-ac76-1dfdff9a531e | Ostock       | Illary Huaylupo | illaryhs@gmail.com | 888888888
 d898a142-de44-466c-8c88-9ceb2c2429d3 | OptimaGrowth | Admin           | illaryhs@gmail.com | 888888888
 e839ee96-28de-4f67-bb79-870ca89743a0 | Ostock       | Illary Huaylupo | illaryhs@gmail.com | 888888888
(3 rows)

 

# SELECT * FROM licenses;

              license_id              |           organization_id            |   description    | product_name | license_type | comment  
--------------------------------------+--------------------------------------+------------------+--------------+--------------+----------
 f2a9c9d4-d2c0-44fa-97fe-724d77173c62 | d898a142-de44-466c-8c88-9ceb2c2429d3 | Software Product | Ostock       | complete     | I AM DEV
 279709ff-e6d5-4a54-8b55-a5c37542025b | e839ee96-28de-4f67-bb79-870ca89743a0 | Software Product | Ostock       | complete     | I AM DEV
(2 rows)