Documentation ¶
Overview ¶
Package subprovider defines contract for a subprovider
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Framework ¶
type Framework interface { // Resources returns the resources for the sub-provider Resources() []func() resource.Resource // DataSources returns the datasources for the sub-provider DataSources() []func() datasource.DataSource }
Framework is the interface implemented by the sub-providers using terraform-plugin-framework
type Plugin ¶
type Plugin interface { // Resources returns the resources for the sub-provider Resources() map[string]*schema.Resource // DataSources returns the datasources for the sub-provider DataSources() map[string]*schema.Resource }
Plugin is the interface implemented by the sub-providers using terraform-plugin-sdk
Click to show internal directories.
Click to hide internal directories.