terraform/helper/schema
Mitchell Hashimoto 2444986fe8 helper/schema: nice error if update isn't supported 2014-08-19 09:26:48 -07:00
..
README.md helper/schema: README 2014-08-17 20:51:09 -07:00
provider.go providers/heroku: Heroku app is mostly converted 2014-08-18 09:32:40 -07:00
provider_test.go helper/schema: Provider implements ResourceProvider 2014-08-17 20:23:25 -07:00
resource.go helper/schema: nice error if update isn't supported 2014-08-19 09:26:48 -07:00
resource_data.go helper/schema: don't include zero count in state 2014-08-18 19:12:49 -07:00
resource_data_test.go helper/schema: don't include zero count in state 2014-08-18 19:12:49 -07:00
resource_test.go helper/schema: nice error if update isn't supported 2014-08-19 09:26:48 -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.