Skip to content

Commit

Permalink
fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
4141done committed Oct 26, 2023
1 parent 6176bc2 commit af6775d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions common/docker-entrypoint.d/00-check-for-required-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if [[ -v AWS_CONTAINER_CREDENTIALS_RELATIVE_URI ]]; then
echo "Running inside an ECS task, using container credentials"

elif [[ -v S3_SESSION_TOKEN ]]; then
echo "Depreciated the S3_SESSION_TOKEN! Use the environment variable of AWS_SESSION_TOKEN instead"
echo "Deprecated the S3_SESSION_TOKEN! Use the environment variable of AWS_SESSION_TOKEN instead"
failed=1

elif [[ -v AWS_SESSION_TOKEN ]]; then
Expand All @@ -58,11 +58,11 @@ elif [[ -v AWS_WEB_IDENTITY_TOKEN_FILE ]]; then
fi

elif [[ -v S3_ACCESS_KEY_ID ]]; then
echo "Depreciated the S3_ACCESS_KEY_ID! Use the environment variable of AWS_ACCESS_KEY_ID instead"
echo "Deprecated the S3_ACCESS_KEY_ID! Use the environment variable of AWS_ACCESS_KEY_ID instead"
failed=1

elif [[ -v S3_SECRET_KEY ]]; then
echo "Depreciated the S3_SECRET_KEY! Use the environment variable of AWS_SECRET_ACCESS_KEY instead"
echo "Deprecated the S3_SECRET_KEY! Use the environment variable of AWS_SECRET_ACCESS_KEY instead"
failed=1

elif [[ -v AWS_SECRET_KEY ]]; then
Expand All @@ -77,7 +77,7 @@ else
fi

if [[ -v S3_DEBUG ]]; then
echo "Depreciated the S3_DEBUG! Use the environment variable of DEBUG instead"
echo "Deprecated the S3_DEBUG! Use the environment variable of DEBUG instead"
failed=1
fi

Expand Down

0 comments on commit af6775d

Please sign in to comment.