[Spring Cloud AWS] Unable to retrieve the requested metadata

Spring Cloud AWS를 스프링 부트에서 실행하면 아래 경고가 발생한다.

com.amazonaws.util.EC2MetadataUtils      : Unable to retrieve the requested metadata (/latest/meta-data/instance-id).

Amazon SDK에서 발생하는 예외로 임시로 아래 두가지 방법으로 해결

@Configuration
@EnableAutoConfiguration(exclude = [ContextInstanceDataAutoConfiguration::class])
class AutoConfigCustom

Reference