terraform/helper/schema
Martin Atkins 21cd5595e2 Update stringer-generated files to new boilerplate
golang/tools commit 23ca8a263 changed the format of the leading comment
to comply with some new standards discussed here:
https://golang.org/issue/13560

This is the result of running generate with the latest version of
stringer. Everyone working on Terraform will need to update stringer
after this is merged, to avoid reverting this:
    go get -u golang.org/x/tools/cmd/stringer
2017-03-29 08:07:06 -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 reify the list values before validation 2017-03-24 12:04:18 -04: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.