terraform/helper/schema
Martin Atkins a0269c688c helper/schema: Clarify the expectations for DefaultFunc
Discussion in #9512 revealed that some of the comments here were
inaccurate and that the comments here did not paint a complete enough
picture of the behavior and expectations of Default and DefaultFunc.

This is a comments-only change that aims to clarify the situation and
call attention to the fact that the defaults only affect the handling of
the configuration and that changes to defaults may require migration of
existing resource states.

This closes #9512.
2017-04-06 09:51:43 -07:00
..
README.md
backend.go
backend_test.go
data_source_resource_shim.go
equal.go
field_reader.go
field_reader_config.go
field_reader_config_test.go
field_reader_diff.go
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
field_writer_map_test.go
getsource_string.go Update stringer-generated files to new boilerplate 2017-03-29 08:07:06 -07:00
provider.go Add schema.Provider.TestReset method 2017-03-07 11:39:11 -05:00
provider_test.go Add schema.Provider.TestReset method 2017-03-07 11:39:11 -05:00
provisioner.go
provisioner_test.go
resource.go helper/schema: Add configurable Timeouts (#12311) 2017-03-02 11:07:49 -06:00
resource_data.go helper/schema: Add configurable Timeouts (#12311) 2017-03-02 11:07:49 -06:00
resource_data_get_source.go
resource_data_test.go helper/schema: Add configurable Timeouts (#12311) 2017-03-02 11:07:49 -06:00
resource_importer.go
resource_test.go helper/schema: Rename Timeout resource block to Timeouts (#12533) 2017-03-09 14:40:14 -06:00
resource_timeout.go helper/schema: Rename Timeout resource block to Timeouts (#12533) 2017-03-09 14:40:14 -06:00
resource_timeout_test.go helper/schema: Rename Timeout resource block to Timeouts (#12533) 2017-03-09 14:40:14 -06:00
schema.go helper/schema: Clarify the expectations for DefaultFunc 2017-04-06 09:51:43 -07:00
schema_test.go interpolation strings were beeing validated 2017-03-24 12:04:18 -04:00
serialize.go
serialize_test.go
set.go
set_test.go
testing.go
valuetype.go
valuetype_string.go Update stringer-generated files to new boilerplate 2017-03-29 08:07:06 -07:00

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.