diff --git a/build.gradle b/build.gradle index 54dc444..6afdccc 100644 --- a/build.gradle +++ b/build.gradle @@ -40,6 +40,8 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server' + implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE' + implementation("org.springframework.boot:spring-boot-starter-data-redis") } diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 3a7fbbc..849f962 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -33,6 +33,19 @@ spring: redis: host: ${REDIS_HOST} port: ${REDIS_PORT} - + jwt: - secret: ${JWT_SECRET} \ No newline at end of file + secret: ${JWT_SECRET} + + cloud: + aws: + s3: + bucket: ${BUKET_NAME} + credentials: + access-key: ${ACCESS_KEY} + secret-key: ${SECRET_KEY} + region: + static: ap-northeast-2 + auto: false + stack: + auto: false \ No newline at end of file