We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7fa8297 + c9f6e01 commit 6659712Copy full SHA for 6659712
rootfs/docker-entrypoint-initdb.d/001_setup_envdir.sh
@@ -30,7 +30,7 @@ if [[ "$DATABASE_STORAGE" == "s3" || "$DATABASE_STORAGE" == "minio" ]]; then
30
echo "s3://$BUCKET_NAME" > WALE_S3_PREFIX
31
# if these values are empty, then the user is using IAM credentials so we don't want these in the
32
# environment
33
- if [[ "$AWS_ACCESS_KEY_ID" != "" && "AWS_SECRET_ACCESS_KEY" != "" ]]; then
+ if [[ "$AWS_ACCESS_KEY_ID" != "" && "$AWS_SECRET_ACCESS_KEY" != "" ]]; then
34
echo $AWS_ACCESS_KEY_ID > AWS_ACCESS_KEY_ID
35
echo $AWS_SECRET_ACCESS_KEY > AWS_SECRET_ACCESS_KEY
36
fi
0 commit comments