38.5 Refactoring Configuration to run in EC2 and PC with configured AWS credentials (#38)
This commit is contained in:
@ -1,11 +1,7 @@
|
||||
package net.shyshkin.study.fullstack.supportportal.backend.config;
|
||||
|
||||
import com.amazonaws.auth.AWSCredentials;
|
||||
import com.amazonaws.auth.AWSStaticCredentialsProvider;
|
||||
import com.amazonaws.auth.BasicAWSCredentials;
|
||||
import com.amazonaws.services.s3.AmazonS3;
|
||||
import com.amazonaws.services.s3.AmazonS3ClientBuilder;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.context.annotation.Profile;
|
||||
@ -15,16 +11,7 @@ import org.springframework.context.annotation.Profile;
|
||||
public class AmazonConfig {
|
||||
|
||||
@Bean
|
||||
public AmazonS3 s3(@Value("${app.amazon-s3.access-key}") String accessKey,
|
||||
@Value("${app.amazon-s3.secret-key}") String secretKey,
|
||||
@Value("${app.amazon-s3.region}") String region) {
|
||||
|
||||
AWSCredentials awsCredentials =
|
||||
new BasicAWSCredentials(accessKey, secretKey);
|
||||
return AmazonS3ClientBuilder
|
||||
.standard()
|
||||
.withRegion(region)
|
||||
.withCredentials(new AWSStaticCredentialsProvider(awsCredentials))
|
||||
.build();
|
||||
public AmazonS3 s3() {
|
||||
return AmazonS3ClientBuilder.defaultClient();
|
||||
}
|
||||
}
|
||||
|
||||
@ -135,9 +135,6 @@ spring:
|
||||
on-profile: image-s3
|
||||
app:
|
||||
amazon-s3:
|
||||
access-key: ${AMAZON_S3_ACCESS_KEY}
|
||||
secret-key: ${AMAZON_S3_SECRET_KEY}
|
||||
region: eu-north-1
|
||||
bucket-name: portal-user-profile-images
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user