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

docker-entrypoint.sh: reading AWS_S3_SECRET_ACCESS_KEY variable from file not working, request for reading variable from file for AWS_S3_ACCESS_KEY_ID #50

Closed
sanderdewitte opened this issue Oct 23, 2023 · 0 comments · Fixed by #52

Comments

@sanderdewitte
Copy link
Contributor

sanderdewitte commented Oct 23, 2023

Question 1:
In docker-entrypoint.sh should:
AWS_S3_SECRET_ACCESS_KEY=$(read -r "${AWS_S3_SECRET_ACCESS_KEY_FILE}")
on line 66 not be:
read -r AWS_S3_SECRET_ACCESS_KEY < "${AWS_S3_SECRET_ACCESS_KEY_FILE}"
to be able to work properly (i.e. read from the file path indicated with AWS_S3_SECRET_ACCESS_KEY_FILE and store in variable AWS_S3_SECRET_ACCESS_KEY)?

Question 2:
Could this same behavior (i.e. reading from file) be implemented for:
AWS_S3_ACCESS_KEY_ID
?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant