build.gradle에 spring-cloud-aws-autoconfigure
을 설정하고 로컬에서 실행시키면 다음과 같은 에러가 나올 수 있다. (줄바꿈 추가)
Caused by: java.lang.IllegalStateException: There is no EC2 meta data available,
because the application is not running in the EC2 environment.
Region detection is only possible if the application is running on a EC2 instance
에러를 해석해보면, application이 돌아가는 환경이 EC2가 아니라 meta data가 없다는 뜻이다.
오호..
region 정보를 추가해주자
cloud:
aws:
region:
static: ap-northeast-2
그러면 다른 에러가 난다....
다른 에러 해결법 : lannstark.tistory.com/68
'개발 공부 기록하기 > 04. Spring & Spring Boot' 카테고리의 다른 글
Unable to load AWS credentials from any provider in the chain 해결 (0) | 2020.09.23 |
---|---|
Failed to connect to service endpoint (Warning) 해결 (0) | 2020.09.21 |
Failed to instantiate StackNameProvider 해결 (1) | 2020.09.18 |
Spring Boot Interceptor에서 권한 관리하기 I (HttpServletRequest getInputStream 여러번) (0) | 2020.03.18 |
Spring Boot SQL 보기 옵션 총 정리 (4) | 2019.07.30 |