terraform/helper/schema
Mitchell Hashimoto 50026a6d5c helper/schema: When having a StateFunc, make sure NewExtra contains
original
2014-08-22 08:57:44 -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 no ID is set then return nil 2014-08-21 22:19:33 -07:00
resource_data.go helper/schema: When having a StateFunc, make sure NewExtra contains 2014-08-22 08:57:44 -07:00
resource_data_test.go helper/schema: When having a StateFunc, make sure NewExtra contains 2014-08-22 08:57:44 -07:00
resource_test.go helper/schema: properly put "id" into attributes 2014-08-20 10:38:51 -07:00
schema.go helper/schema: When having a StateFunc, make sure NewExtra contains 2014-08-22 08:57:44 -07:00
schema_test.go helper/schema: When having a StateFunc, make sure NewExtra contains 2014-08-22 08:57:44 -07:00
set.go helper/schema: set diff tests 2014-08-20 21:09:07 -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.