Terraform Auth0 custom prompt text returns error when using variables such as ${companyName}

Wondering if anyone else was experiencing the following issue when trying to terraform the auth0 prompt custom text : Terraform Registry

When trying to terraform the json block, i get an error for every instance of a place holder variable. here is a screenshot of the error message of one of these variables.

The documented usage example at https://registry.terraform.io/providers/auth0/auth0/latest/docs/resources/prompt_custom_text appears to be incorrect.

In a Terraform string, ${ ... } is interpreted as an interpolation by Terraform - if you want to send the string to Auth0, you need to escape it as detailed in https://www.terraform.io/language/expressions/strings.

Thank you! that worked!