개발 공부 기록하기/04. Spring & Spring Boot

Failed to instantiate StackNameProvider 해결

lannstark 2020. 9. 18. 09:25
Caused by: org.springframework.beans.BeanInstantiationException:
Failed to instantiate [org.springframework.cloud.aws.core.env.stack.config.StackNameProvider]:
Factory method 'autoDetectingStackNameProvider' threw exception;
nested exception is java.lang.IllegalArgumentException: No valid instance id defined

Spring Cloud AWS 의 auto configure를 이용할때 위와 같은 에러가 날 수 있다.

 

이럴때는..

cloud:
  aws:
    stack:
      auto: false

위와 같은 옵션을 추가해주자! 그러면 해결된다. 해당 옵션은 CloudFormation 구성을 하지 않는 옵션으로, CloudFormation과 stack 이 어떤 개념인지는 다음 번에 다루어 보겠다..