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
James Bardin 6055cb632e
filter unknowns from simple lists and maps in sdk
7 years ago
..
README.md
backend.go don't panic of the users aborts backend input 7 years ago
backend_test.go don't panic of the users aborts backend input 7 years ago
core_schema.go remove SkipCoreTypeCheck 7 years ago
core_schema_test.go remove SkipCoreTypeCheck 7 years ago
data_source_resource_shim.go Deprecated -> DeprecationMessage. 8 years ago
equal.go
field_reader.go helper/resource: Ignore Removed attributes for ImportStateVerify 7 years ago
field_reader_config.go restrict the ComputedKeys usage to containers 7 years ago
field_reader_config_test.go helper/schema: handle TypeMap elem consistently with other collection types 8 years ago
field_reader_diff.go don't modify argument slices 7 years ago
field_reader_diff_test.go helper/schema: handle TypeMap elem consistently with other collection types 8 years ago
field_reader_map.go don't modify argument slices 7 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
field_writer_map.go helper/schema: Prevent setSet() panic with typed nil 7 years ago
field_writer_map_test.go helper/schema: Prevent setSet() panic with typed nil 7 years ago
getsource_string.go stringer: Regenerate files with latest version 7 years ago
provider.go Copy TF version to helper/schema provider 7 years ago
provider_test.go decode legacy timeouts 7 years ago
provisioner.go create a SimpleDiff for the new provider shims 7 years ago
provisioner_test.go Refactor the provisioner validation function (#15273) 9 years ago
resource.go helper/resource: Ignore Removed attributes for ImportStateVerify 7 years ago
resource_data.go helper/schema: Add deprecation to ResourceData.UnsafeSetFieldRaw 7 years ago
resource_data_get_source.go
resource_data_test.go make sure id really gets set in SetId 7 years ago
resource_diff.go grammatical updates to comments and docs (#20195) 7 years ago
resource_diff_test.go helper/schema: Always propagate NewComputed for previously zero value primative type attributes 7 years ago
resource_importer.go helper/schema: pass through import state func 10 years ago
resource_test.go helper/schema: Fix timeout parsing in ResourceTimeout.ConfigDecode 7 years ago
resource_timeout.go decode legacy timeouts 7 years ago
resource_timeout_test.go decode legacy timeouts 7 years ago
schema.go filter unknowns from simple lists and maps in sdk 7 years ago
schema_test.go Revert "helper/schema: Schema.AsSingle flag" 7 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 don't allow computed set elems to be equal 7 years ago
set_test.go helper/schema: More tests for Set.HashEqual 9 years ago
shims.go remove SkipCoreTypeCheck 7 years ago
shims_test.go delete unknown values from apply config altogether 7 years ago
testing.go create a SimpleDiff for the new provider shims 7 years ago
valuetype.go
valuetype_string.go stringer: Regenerate files with latest version 7 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.