Something seems to have changed with how configs a...
# general
b
Something seems to have changed with how configs are passed in yaml. Since 3.192.0 there has been an error thrown
Property access is only allowed on Resources and Objects
when you attempt to use maps like so in the stack file
Copy code
project-name:foo:
   bar: test-value
and use in the yaml program like so
Copy code
blah:
  type: ...
  properties:
    something: ${foo.bar}
👀 1
Looked through the code but not seeing what introduced this change
I was able to work around by changing my usage in the yaml program from dot notation to bracket notation
i.e.
${foo.bar}
->
${foo["bar"]}