MockExprVariable returns a hcl.Expression that evaluates to the value of the variable with the given name.
(name string)
| 190 | // MockExprVariable returns a hcl.Expression that evaluates to the value of |
| 191 | // the variable with the given name. |
| 192 | func MockExprVariable(name string) hcl.Expression { |
| 193 | return mockExprVariable(name) |
| 194 | } |
| 195 | |
| 196 | type mockExprVariable string |
| 197 |