We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
While working in the ${file...} lookup, I discovered that having a slash inside the lookup, such as:
${file parameterized-b64:file://userdata.txt}
causes infinite recursion in Variable.resolve, on line 118 (while self.lookups). Simply removing the slashes in the path above avoids the problem.
I haven't looked into the root cause yet.
The text was updated successfully, but these errors were encountered:
I'm taking a guess, but it's likely due to this line: https://github.com/remind101/stacker/blob/master/stacker/variables.py#L11 - you might need to include \/ in the idpattern. @mhahn will know best.
\/
Sorry, something went wrong.
@phobologic indeed, that fixes it. I'll put in a simple PR just for that fix right now.
Merge pull request #215 from ttarhan/fix-variable-idpattern
a6e649e
Resolves issue #213 - slashes inside variable lookups
No branches or pull requests
While working in the ${file...} lookup, I discovered that having a slash inside the lookup, such as:
${file parameterized-b64:file://userdata.txt}
causes infinite recursion in Variable.resolve, on line 118 (while self.lookups). Simply removing the slashes in the path above avoids the problem.
I haven't looked into the root cause yet.
The text was updated successfully, but these errors were encountered: