virtuald/pyhcl

Variables interpolation

Ar1k14001 opened this issue · 1 comments

The original hcl implement variables interpolation like in the below example:

provider "linode" {
token = "${var.token}" }

pyhcl however doesn't implement it and the value given by parsing in "${var.token}" instead of the token itself.
Please fix this incompatible parsing.

Terraform performs application-specific interpolation, that isn't a function of the hcl language.