terraform/helper/schema
Mitchell Hashimoto 021a23fe99 helper/schema: if update sets the ID to blank, it deletes the resource 2014-08-20 10:38:51 -07:00
..
README.md helper/schema: README 2014-08-17 20:51:09 -07:00
provider.go helper/schema: ability to force set Meta 2014-08-19 15:26:31 -07:00
provider_test.go helper/schema: ability to force set Meta 2014-08-19 15:26:31 -07:00
resource.go helper/schema: if update sets the ID to blank, it deletes the resource 2014-08-20 10:38:51 -07:00
resource_data.go helper/schema: support bools 2014-08-19 16:46:36 -07:00
resource_data_test.go helper/schema: support bools 2014-08-19 16:46:36 -07:00
resource_test.go helper/schema: if update sets the ID to blank, it deletes the resource 2014-08-20 10:38:51 -07:00
schema.go helper/schema: show computed lists in diffs 2014-08-18 21:22:27 -07:00
schema_test.go helper/schema: show computed lists in diffs 2014-08-18 21:22:27 -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.