Data Sources
Data sources let Terraform reference external data. Unlike resources, Terraform does not create, update, or delete data sources, and makes no attempt to modify the underlying API. Data Sources are a read-only resource type, so they only implement a subset of the operations that resources do. Refer to Data Sources in the Framework documentation for details.
This page explains how to migrate a data source from SDKv2 to the plugin Framework. We also recommend reviewing these additional guides for data sources throughout the migration:
- Timeouts: The data source uses timeouts during a read operation.
SDKv2
In SDKv2, data sources are defined by the DataSourcesMap
field on the schema.Provider
struct, which maps data source
names (strings) to their schema. The schema.Resource
struct is used for both resources and data sources.
The following example shows a typical implementation.
In SDKv2, you define both resources and data sources with schema.Resource
structs. The following example shows a
resource struct. For clarity, the example omits fields that are not available for data sources.
Framework
In the Framework, you define data sources by adding them to the map returned by your provider's DataSources
method.
The DataSources
method on your provider.Provider
returns a slice of functions that return types
that implement the datasource.DataSource
interface for each data source your provider supports.
The following code shows how you add a data source to your provider with the Framework.
Like the resource.Resource
interface, datasource.DataSource
requires Schema
and Metadata
methods.
These methods work the same way for data sources as they do for resources. The Read
method is also required.
The Schema
method returns a schema.Schema
struct which defines your data source's attributes.
The Metadata
method returns a type name that you define.
The Read
method implements the logic for writing into the Terraform state.
The following code shows how you define a datasource.DataSource
which implements these methods with the
Framework.
Migration Notes
Remember the following details when completing the migration from SDKv2 to the Framework.
- As data sources are read-only, you only implement read functionality for your provider's data sources. Refer to the
Read
function for resources in the Framework documentation for more details.
Example
SDKv2
The following example shows an implementation of the DataSourcesMap
field on the provider
schema with SDKv2.
The following example shows how the ReadContext
function and Schema
are defined for
the exampleResource
data source with SDKv2.
Framework
The following example shows how the exampleDataSource
data source is defined with the Framework after
the migration.
This code defines the methods for the exampleDataSource
data source with the
Framework.