We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fa8297 commit c9f6e01Copy full SHA for c9f6e01
1 file changed
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