Skip to content

Commit 28b36e2

Browse files
devRavitclaude
andcommitted
fix: application-production.yml에 spring.config.import 설정 추가
- 환경변수 주입 방식 대신 앱 설정 파일에서 직접 Secrets Manager 연동 - 운영 환경에서는 Secrets Manager 연결 필수 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent d72364e commit 28b36e2

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ object Versions {
1616
}
1717

1818
group = "com.ravit"
19-
version = "0.2.8"
19+
version = "0.2.9"
2020

2121
java {
2222
toolchain {

docs/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@
44

55
<!-- CHANGELOG_START -->
66

7+
## v0.2.9
8+
`2026.01.17 17:00`
9+
10+
spring.config.import 설정 추가
11+
12+
- application-production.yml에 spring.config.import 설정 직접 추가
13+
- 환경변수 주입 방식 대신 앱 설정 파일에서 직접 Secrets Manager 연동
14+
- 운영 환경에서는 Secrets Manager 연결 필수 (실패 시 앱 기동 중단)
15+
16+
---
17+
718
## v0.2.8
819
`2026.01.17 16:00`
920

src/main/resources/application-production.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
spring:
2+
config:
3+
import: aws-secretsmanager:production/stash
4+
15
logging:
26
level:
37
root: INFO

0 commit comments

Comments
 (0)