Files
opentf/helper/schema
Mitchell Hashimoto 241fc5bb39 helper/schema: diff floats properly
/cc @phinze - This is pretty straightforward, almost magically so. The
reason this works is because in `diffString` we use mapstructure[1] with
"weak decode mode" to just be responisble for turning anything into a
string.

[1]: https://github.com/mitchellh/mapstructure
2015-01-14 09:32:03 -08:00
..
2015-01-10 16:04:01 -08:00
2014-08-24 21:50:35 -07:00
2014-09-29 10:25:43 -07:00
2014-08-17 20:51:09 -07:00
2015-01-14 09:32:03 -08:00
fmt
2014-08-20 22:24:35 -07:00
2015-01-08 11:33:15 -08:00

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.