Giter Club home page Giter Club logo

Comments (4)

apparentlymart avatar apparentlymart commented on August 22, 2024

This is also occurring in the alibaba/ecs-instance/alicloud module:

Error: Invalid character

  on .terraform/init-from-module/root/alibaba-terraform-alicloud-ecs-instance-063c382/main.tf line 88:
  88: }

This character is not used within the language.

There are no backticks in this file. In this case the error message appears only once, however.

from hcl2.

apparentlymart avatar apparentlymart commented on August 22, 2024

In the Alicloud case it appears that the error was caused as a side-effect of #16, which is now fixed.

from hcl2.

apparentlymart avatar apparentlymart commented on August 22, 2024

The cause of this is a quoted percent sign.

Our new parser uses %{ as the introducer for template control sequences, whereas previously it was interpreted literally. Our intent here is that a % not followed by a { will be treated literally, but the way that is implemented causes problems here because the % consumes its following " in order to check that it isn't a {, which in turn prevents the string terminator from being detected:

Error: Unterminated template string

  on weird.hcl line 63, in variable "user_host":
  63:   default     = "%"
  64: }

No closing marker was found for the string.

Unfortunately this ends up leaving things in a broken state because the scanner thinks it is still reading an embedded template while the parser has moved on and returned back to expression parsing, causing the following tokens to make no sense.

from hcl2.

apparentlymart avatar apparentlymart commented on August 22, 2024

This is fixed in 9245693.

from hcl2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.