NOTES:
- tfsdk: Schema definitions may now introduce single nested mode blocks, however this support is only intended for migrating terraform-plugin-sdk timeouts blocks. New implementations should prefer single nested attributes instead. (#477)
BREAKING CHANGES:
- datasource: The
DataSource
interface now requires theGetSchema
andMetadata
methods. (#478) - provider: The
DataSourceType
andResourceType
types have been removed. Use theGetSchema
,Metadata
, and optionally theConfigure
methods ondatasource.DataSource
andresource.Resource
implementations instead. (#478) - provider: The
Provider
interfaceGetDataSources
andGetResources
methods have been removed. Use theDataSources
andResources
methods instead. (#478) - resource: The
Resource
interface now requires theGetSchema
andMetadata
methods. (#478)
ENHANCEMENTS:
- tfsdk: Added single nested mode block support (#477)
BUG FIXES: