You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/helper/schema
Mitchell Hashimoto 30786ce442
fmt
12 years ago
..
README.md helper/schema: README 12 years ago
provider.go helper/schema: Input support 12 years ago
provider_test.go Fix go vet complaints 12 years ago
resource.go ResourceDiff => InstanceDiff 12 years ago
resource_data.go helper/schema: sets must be treated atomically within ResourceData 12 years ago
resource_data_test.go helper/schema: sets must be treated atomically within ResourceData 12 years ago
resource_test.go ResourceDiff => InstanceDiff 12 years ago
schema.go helper/schema: sets must be treated atomically within ResourceData 12 years ago
schema_test.go fmt 12 years ago
set.go helper/schema: set diff tests 12 years ago
set_test.go fmt 12 years ago

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.