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 9d7fb89114
core: Adding Sensitive attribute to resource schema
10 years ago
..
README.md
data_source_resource_shim.go helper/schema: emit warning when using data source resource shim 10 years ago
equal.go helper/schema: use interface for equality check 11 years ago
field_reader.go helper/schema: Default hashing function for sets 11 years ago
field_reader_config.go helper/schema: Read native maps from configuration 10 years ago
field_reader_config_test.go helper/schema: Read native maps from configuration 10 years ago
field_reader_diff.go helper/schema: Default hashing function for sets 11 years ago
field_reader_diff_test.go removed extra parentheses 11 years ago
field_reader_map.go helper/schema: Default hashing function for sets 11 years ago
field_reader_map_test.go removed extra parentheses 11 years ago
field_reader_multi.go helper/schema: full object test for addrToSchema 11 years ago
field_reader_multi_test.go helper/schema: too big to fail 11 years ago
field_reader_test.go removed extra parentheses 11 years ago
field_writer.go helper/schema: FieldWriter, replace Set 11 years ago
field_writer_map.go consul: Fix several problems w/ consul_keys update 10 years ago
field_writer_map_test.go Merge pull request #3257 from fatih/fix-nil-setting-schema 10 years ago
getsource_string.go Reflect new comment format in stringer.go 11 years ago
provider.go helper/schema: Resource can be writable or not 10 years ago
provider_test.go core: New ResourceProvider methods for data resources 10 years ago
resource.go helper/schema: emit warning when using data source resource shim 10 years ago
resource_data.go Change taint behaviour to act as a normal resource 10 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 helper/schema: cleaner way to store Ephemeral 10 years ago
resource_importer.go helper/schema: pass through import state func 10 years ago
resource_test.go helper/schema: Resource can be writable or not 10 years ago
schema.go core: Adding Sensitive attribute to resource schema 10 years ago
schema_test.go core: support native list variables in config 10 years ago
serialize.go helper/schema: Default hashing function for sets 11 years ago
serialize_test.go helper/schema: Default hashing function for sets 11 years ago
set.go Change Set internals and make (extreme) performance improvements 10 years ago
set_test.go Change Set internals and make (extreme) performance improvements 10 years ago
valuetype.go helper/schema: zero value of a set should be empty 11 years ago
valuetype_string.go Reflect new comment format in stringer.go 11 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.