[STS 적용 - 4] NCS S3 STS 적용
B2G 사업으로 인해 AWS 가 아닌 Gov Naver Cloud 에 서버가 있는게 있다. 해당 서버들도 Object Storage 를 사용하기 때문에 STS 를 적용해주어야한다. Naver Cloud 의 Object Storage는 Amazon S3 API를 사용하고 있기 때문에 앞서 사용한 소스의 일부를 그대로 쓰면 된다. STS 적용 전 private AmazonS3 s3; public void s3Client() { s3 = AmazonS3ClientBuilder.standard() .withEndpointConfiguration(new AwsClientBuilder.EndpointConfiguration(endPoint, regionName)) .withCredentials(new AWSStat..