File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed
Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ AWS_SECRET_ACCESS_KEY_SECONDARY=test2
1111AWS_REGION_SECONDARY=us-west-1
1212AWS_ACCESS_KEY_ID_SECONDARY=test2
1313AWS_BUCKET_NAME_SECONDARY=aligned.storage
14- UPLOAD_ENDPOINT_SECONDARY=http://localhost :4567
15- DOWNLOAD_ENDPOINT_SECONDARY=http://localhost :4567/aligned.storage
14+ UPLOAD_ENDPOINT_SECONDARY=http://localstack2 :4567
15+ DOWNLOAD_ENDPOINT_SECONDARY=http://localstack2 :4567/aligned.storage
1616
1717RUST_LOG=info
1818RUST_BACKTRACE=1
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ python3 /etc/localstack/init/ready.d/init-s3.py \
3+ --endpoint_url http://localhost:4566 \
4+ --access_key test \
5+ --secret_key test \
6+ --bucket_name aligned.storage \
7+ --region us-east-2
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ python3 /etc/localstack/init/ready.d/init-s3.py \
3+ --endpoint_url http://localhost:4567 \
4+ --access_key test2 \
5+ --secret_key test2 \
6+ --bucket_name aligned.storage \
7+ --region us-west-1
You can’t perform that action at this time.
0 commit comments