Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fixes usage with eks pod identity #374

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions common/docker-entrypoint.d/00-check-for-required-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,16 @@ elif [[ -v AWS_WEB_IDENTITY_TOKEN_FILE ]]; then
AWS_ROLE_SESSION_NAME="nginx-s3-gateway"
fi

# d) Using EKS pod identity. This is indicated by AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE being set.
# See https://docs.aws.amazon.com/eks/latest/userguide/pod-identities.html.
# Example: We are running inside an EKS cluster with a pod identity configured.
elif [[ -v AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE ]]; then
echo "Running inside EKS with EKS pod identity"
if [[ ! -v AWS_ROLE_SESSION_NAME ]]; then
# The default value is set as a nginx-s3-gateway unless the value is defined.
AWS_ROLE_SESSION_NAME="nginx-s3-gateway"
fi

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