시간날때 다시 정리할건데 여러분들도 아마 certificate-manager 로 무료 인증서를 발급받은 후Load Balancer로 타겟그룹을 설정했을것이다.타겟그룹에서 health check 설정에서 /health를 설정해두었다면 스프링에서 controller로 /health API를 만들어 둬야함. 계속 요청이 들어오면서 통신상태를 확인하는듯 이게 뚫려야 503이 안뜸 package com.ing.sweeety.api.healthCheck;import org.springframework.http.ResponseEntity;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotat..