Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
helper/schema: fix validating nested objects
When interpreting a nested object, we were validating against the "raw" value, and not the interpolated value, causing incorrect errors. This affects structures such as: ```terraform tags = "${list(map("foo", "bar"))}" ``` Prior to this, a complaint about "expected object, got string" since the raw value is obviously a string, when the interpolated value is the correct shape.
- Loading branch information