mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-14 09:34:03 -06:00
Providers get a per-resource SchemaVersion integer that they can bump when a resource's schema changes format. Each InstanceState with an older recorded SchemaVersion than the cureent one is yielded to a `MigrateSchema` function to be transformed such that it can be addressed by the current version of the resource's Schema. |
||
---|---|---|
.. | ||
equal.go | ||
field_reader_config_test.go | ||
field_reader_config.go | ||
field_reader_diff_test.go | ||
field_reader_diff.go | ||
field_reader_map_test.go | ||
field_reader_map.go | ||
field_reader_multi_test.go | ||
field_reader_multi.go | ||
field_reader_test.go | ||
field_reader.go | ||
field_writer_map_test.go | ||
field_writer_map.go | ||
field_writer.go | ||
getsource_string.go | ||
provider_test.go | ||
provider.go | ||
README.md | ||
resource_data_get_source.go | ||
resource_data_test.go | ||
resource_data.go | ||
resource_test.go | ||
resource.go | ||
schema_test.go | ||
schema.go | ||
set_test.go | ||
set.go | ||
valuetype_string.go | ||
valuetype.go |
Terraform Helper Lib: schema
The schema
package provides a high-level interface for writing resource
providers for Terraform.
If you're writing a resource provider, we recommend you use this package.
The interface exposed by this package is much friendlier than trying to write to the Terraform API directly. The core Terraform API is low-level and built for maximum flexibility and control, whereas this library is built as a framework around that to more easily write common providers.