fix: correct ecs environment variable name - #26
Merged
Conversation
Contributor
|
can you please remove the documentation updates? the docs shouldn't be rendered on PR's because they go live immeditely after merging and then the docs are newer than the latest release. So only on a release render the docs. See instructions here: https://github.com/Kong/lua-resty-aws#history |
windmgc
force-pushed
the
fix-ecs-env-var-name
branch
from
September 23, 2022 03:12
375b1f4 to
27248d7
Compare
Member
Author
|
@Tieske got it, I've dropped the docs changes, please take a look again, thanks! |
Contributor
|
version 0.5.5 is now up, including this fix. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
I accidentally caught this by testing the lib in the ECS environment, logs show that
The environment variable name for the ECS metadata URI seems to be wrong.
It should be
ECS_CONTAINER_METADATA_URIandECS_CONTAINER_METADATA_URI_V4, according to https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-metadata-endpoint-v4.html#task-metadata-endpoint-v4-paths and https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-metadata-endpoint-v3.html#task-metadata-endpoint-v3-pathsTo keep all the references in the same format I also changed these variable names.
Changelog