terraform/helper/schema
Sander van Harmelen 83c760fcb3 core: refactoring the way sets work internally v2
This is a refactored solution for PR #616. Functionally this is still
the same change, but it’s implemented a lot cleaner with less code and
less changes to existing parts of TF.
2014-12-12 23:21:20 +01:00
..
README.md helper/schema: README 2014-08-17 20:51:09 -07:00
provider.go helper/schema: Input support 2014-09-29 10:25:43 -07:00
provider_test.go Fix go vet complaints 2014-08-24 21:50:35 -07:00
resource.go helper/schema: on destroy/create, reset state to be empty [GH-464] 2014-10-21 00:28:53 -07:00
resource_data.go core: refactoring the way sets work internally v2 2014-12-12 23:21:20 +01:00
resource_data_test.go core: refactoring the way sets work internally v2 2014-12-12 23:21:20 +01:00
resource_test.go helper/schema: on destroy/create, reset state to be empty [GH-464] 2014-10-21 00:28:53 -07:00
schema.go core: refactoring the way sets work internally v2 2014-12-12 23:21:20 +01:00
schema_test.go core: refactoring the way sets work internally v2 2014-12-12 23:21:20 +01:00
set.go providers/aws: fixing faililng test 2014-10-21 10:57:55 -07:00
set_test.go fmt 2014-08-20 22:24:35 -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.