terraform/helper/schema
Sander van Harmelen 3d0073e05c core: fix a crash by suggesting a different approach to solve #11170 (#13541)
* Revert #11245, #11321, #11498 and #11757

These PR’s are all related to issue #11170 for which I would like to propose a different solution then the one currently implemented.

* A different approach to solve #11170

This approach has (IMHO) a few advantages with regards to the solution currently implemented. I will elaborate on this in the PR.
2017-04-14 22:32:30 +02:00
..
README.md
backend.go convert the other context keys to the correct type 2017-04-06 10:51:24 -04:00
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 convert the other context keys to the correct type 2017-04-06 10:51:24 -04:00
provisioner_test.go
resource.go
resource_data.go
resource_data_get_source.go
resource_data_test.go
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 core: fix a crash by suggesting a different approach to solve #11170 (#13541) 2017-04-14 22:32:30 +02:00
schema_test.go core: fix a crash by suggesting a different approach to solve #11170 (#13541) 2017-04-14 22:32:30 +02: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.