unparsedVariableValueExpression is a backend.UnparsedVariableValue implementation that was actually already parsed (!). This is intended to deal with expressions inside "tfvars" files.
| 265 | // implementation that was actually already parsed (!). This is |
| 266 | // intended to deal with expressions inside "tfvars" files. |
| 267 | type unparsedVariableValueExpression struct { |
| 268 | expr hcl.Expression |
| 269 | sourceType tofu.ValueSourceType |
| 270 | } |
| 271 | |
| 272 | func (v unparsedVariableValueExpression) ParseVariableValue(mode configs.VariableParsingMode) (*tofu.InputValue, tfdiags.Diagnostics) { |
| 273 | var diags tfdiags.Diagnostics |
nothing calls this directly
no outgoing calls
no test coverage detected