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 c3ec9f7965
Revert "helper/schema: TypeMap computed should mark diff as cmputed"
11 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 helper/schema: on destroy/create, reset state to be empty [GH-464] 12 years ago
resource_data.go helper/schema: remove debug info 12 years ago
resource_data_test.go fmt 12 years ago
resource_test.go helper/schema: on destroy/create, reset state to be empty [GH-464] 12 years ago
schema.go Revert "helper/schema: TypeMap computed should mark diff as cmputed" 11 years ago
schema_test.go Revert "helper/schema: TypeMap computed should mark diff as cmputed" 11 years ago
set.go providers/aws: fixing faililng test 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.