To put a variable inside the string using string interpolation, you need to reference it using
`${ ... }` syntax:
```HCL
"Hello, ${var.name}"
```
### See also
1.
### Reference
1. [String Interpolation Terraform Docs](https://developer.hashicorp.com/terraform/language/expressions/strings#interpolation)