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
Paddy 35d82b0555
Merge pull request #18795 from hashicorp/paddy_diff_nested_checkKey
8 years ago
..
README.md
backend.go helper/schema: Hook CustomizeDiffFunc into diff logic 8 years ago
backend_test.go helper/schema: framework for Backends 9 years ago
core_schema.go core: terraform.ResourceProvider.GetSchema method 8 years ago
core_schema_test.go core: terraform.ResourceProvider.GetSchema method 8 years ago
data_source_resource_shim.go Deprecated -> DeprecationMessage. 8 years ago
equal.go helper/schema: use interface for equality check 11 years ago
field_reader.go helper/schema: handle TypeMap elem consistently with other collection types 8 years ago
field_reader_config.go helper/schema: handle TypeMap elem consistently with other collection types 8 years ago
field_reader_config_test.go helper/schema: handle TypeMap elem consistently with other collection types 8 years ago
field_reader_diff.go helper/schema: handle TypeMap elem consistently with other collection types 8 years ago
field_reader_diff_test.go helper/schema: handle TypeMap elem consistently with other collection types 8 years ago
field_reader_map.go helper/schema: handle TypeMap elem consistently with other collection types 8 years ago
field_reader_map_test.go helper/schema: handle TypeMap elem consistently with other collection types 8 years ago
field_reader_multi.go
field_reader_multi_test.go Revert "helper/schema: Make nested Set(s) in List(s) work" (#7436) 10 years ago
field_reader_test.go helper/schema: handle TypeMap elem consistently with other collection types 8 years ago
field_writer.go helper/schema: FieldWriter, replace Set 11 years ago
field_writer_map.go helper/schema: Clear existing map/set/list contents before overwriting 8 years ago
field_writer_map_test.go helper/schema: Clear existing map/set/list contents before overwriting 8 years ago
getsource_string.go Update various files for new version of "stringer" 8 years ago
provider.go s/repalce/replace 8 years ago
provider_test.go core: terraform.ResourceProvider.GetSchema method 8 years ago
provisioner.go helper/schema: Hook CustomizeDiffFunc into diff logic 8 years ago
provisioner_test.go Refactor the provisioner validation function (#15273) 9 years ago
resource.go Deprecated -> DeprecationMessage. 8 years ago
resource_data.go terraform/terraform_remote_state: accept complex configs 8 years ago
resource_data_get_source.go helper/schema: diff with set going to 0 elements removes it from state 11 years ago
resource_data_test.go make sure ResourceData timeouts are always set 8 years ago
resource_diff.go Don't allow sub-blocks for SetNew. 8 years ago
resource_diff_test.go Add tests to ensure clearing sub-blocks works. 8 years ago
resource_importer.go helper/schema: pass through import state func 10 years ago
resource_test.go Deprecated -> DeprecationMessage. 8 years ago
resource_timeout.go helper/schema: Rename Timeout resource block to Timeouts (#12533) 9 years ago
resource_timeout_test.go Fix drift caused from gofmt when running make dev and go 1.11. 8 years ago
schema.go Fix typo in comment 8 years ago
schema_test.go Fix drift caused from gofmt when running make dev and go 1.11. 8 years ago
serialize.go core: Avoid crash on empty TypeSet blocks (#14305) 9 years ago
serialize_test.go Add test for TypeMap in a Schema 10 years ago
set.go Add a HashInt helper/schema function 8 years ago
set_test.go helper/schema: More tests for Set.HashEqual 9 years ago
testing.go helper/schema: Hook CustomizeDiffFunc into diff logic 8 years ago
valuetype.go helper/schema: zero value of a set should be empty 11 years ago
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.