Skip to content

Commit

Permalink
change minio access key, more l33t #6783
Browse files Browse the repository at this point in the history
  • Loading branch information
pdurbin committed Dec 6, 2023
1 parent ab47848 commit 811d79a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ services:
- minio_storage:/data
environment:
MINIO_ROOT_USER: 4cc355_k3y
MINIO_ROOT_PASSWORD: s3cr3t_4cc355_k35
MINIO_ROOT_PASSWORD: s3cr3t_4cc355_k3y
command: server /data

networks:
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/edu/harvard/iq/dataverse/api/S3AccessIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static void setUp() {
.withEndpointConfiguration(new EndpointConfiguration("s3.localhost.localstack.cloud:4566", Regions.US_EAST_2.getName())).build();

String accessKeyMinio = "4cc355_k3y";
String secretKeyMinio = "s3cr3t_4cc355_k35";
String secretKeyMinio = "s3cr3t_4cc355_k3y";
s3minio = AmazonS3ClientBuilder.standard()
// https://stackoverflow.com/questions/72205086/amazonss3client-throws-unknownhostexception-if-attempting-to-connect-to-a-local
.withPathStyleAccessEnabled(Boolean.TRUE)
Expand Down

0 comments on commit 811d79a

Please sign in to comment.