You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/helper/schema
Chris Marchesi cb5ce1d35e
helper/schema: Extend diffChange and bubble up customized values
8 years ago
..
README.md
backend.go helper/schema: Hook CustomizeDiffFunc into diff logic 9 years ago
backend_test.go
core_schema.go core: terraform.ResourceProvider.GetSchema method 9 years ago
core_schema_test.go core: terraform.ResourceProvider.GetSchema method 9 years ago
data_source_resource_shim.go
equal.go
field_reader.go
field_reader_config.go
field_reader_config_test.go
field_reader_diff.go memoize DiffFieldReader.ReadField 9 years ago
field_reader_diff_test.go
field_reader_map.go
field_reader_map_test.go
field_reader_multi.go
field_reader_multi_test.go
field_reader_test.go
field_writer.go
field_writer_map.go helper/schema: Clear existing map/set/list contents before overwriting 9 years ago
field_writer_map_test.go helper/schema: Clear existing map/set/list contents before overwriting 9 years ago
getsource_string.go Update various files for new version of "stringer" 8 years ago
provider.go helper/schema: Hook CustomizeDiffFunc into diff logic 9 years ago
provider_test.go core: terraform.ResourceProvider.GetSchema method 9 years ago
provisioner.go helper/schema: Hook CustomizeDiffFunc into diff logic 9 years ago
provisioner_test.go Refactor the provisioner validation function (#15273) 9 years ago
resource.go helper/schema: CustomizeDiff allowed on writable resources only 9 years ago
resource_data.go helper/schema: Extend diffChange and bubble up customized values 8 years ago
resource_data_get_source.go
resource_data_test.go helper/schema: Opt-in panic on invalid ResourceData.Set 9 years ago
resource_diff.go helper/schema: Extend diffChange and bubble up customized values 8 years ago
resource_diff_test.go helper/schema: Better ResourceDiff schema key validation 9 years ago
resource_importer.go
resource_test.go helper/schema: CustomizeDiff allowed on writable resources only 9 years ago
resource_timeout.go
resource_timeout_test.go
schema.go helper/schema: Extend diffChange and bubble up customized values 8 years ago
schema_test.go add failing test case 8 years ago
serialize.go
serialize_test.go
set.go helper/schema: Add Set.HashEqual 9 years ago
set_test.go helper/schema: More tests for Set.HashEqual 9 years ago
testing.go helper/schema: Hook CustomizeDiffFunc into diff logic 9 years ago
valuetype.go
valuetype_string.go Update various files for new version of "stringer" 8 years ago

README.md

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.