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
High
1.0.4
No response
Two problems with the HCLParser that cause failures in valid HCL:
variable "foo" { type = object({ # this prop is really important for reasons bar = string # this one...who knows baz = string }
variable "bar" { default = <<-EOF Here we have some text. And for valid reasons, I need to have EOF in the text I'm writing. EOF
The parser currently matches the EOF in the middle of the sentence and then fails with invalid syntax for the remainder.
See above.
I've submitted a PR that seems to resolve both issues: OctopusDeploy/HCLParser#11
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Team
Severity
High
Version
1.0.4
Latest Version
No response
What happened?
Two problems with the HCLParser that cause failures in valid HCL:
The parser currently matches the EOF in the middle of the sentence and then fails with invalid syntax for the remainder.
Reproduction
See above.
Error and Stacktrace
No response
More Information
No response
Workaround
I've submitted a PR that seems to resolve both issues: OctopusDeploy/HCLParser#11
The text was updated successfully, but these errors were encountered: