Terraform Plugin Framework : Value Conversion Error unhandled unknown value

Hi folks :wave: 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"`
}

Hope this insight helps a little.