An unexpected error was encountered trying to build a value. This is always an error in the provider. Please report the following to the provider developer:
**│ ** │ unhandled unknown value
Hi folks When working with Go structs to convert schema-based data to regular Go types, you have to be careful when working with configuration or plan data. Unlike state data, which is either null or a known value (and typically can use “regular” Go types like []string, *string, etc), configuration or plan data can contain unknown values: Plugin Development - Framework: Access State, Config, and Plan | Terraform by HashiCorp
The recommended way to deal with configuration or plan data for now is using types package types in Go structs, e.g.
type myModel struct {
ExampleList types.List `tfsdk:"example_list"`
}