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 0bc0c03fec
helper/schema: zero value set should set function [GH-1009]
11 years ago
..
README.md helper/schema: README 12 years ago
equal.go helper/schema: use interface for equality check 11 years ago
field_reader.go helper/schema: zero value set should set function [GH-1009] 11 years ago
field_reader_config.go helper/schema: apply schema defaults at the field level when reading from config 11 years ago
field_reader_config_test.go helper/schema: apply schema defaults at the field level when reading from config 11 years ago
field_reader_diff.go helper/schema: diff with set going to 0 elements removes it from state 11 years ago
field_reader_diff_test.go helper/schema: diff with set going to 0 elements removes it from state 11 years ago
field_reader_map.go Add some missing Float cases 11 years ago
field_reader_map_test.go helper/schema: map counts in state 11 years ago
field_reader_multi.go helper/schema: full object test for addrToSchema 11 years ago
field_reader_multi_test.go helper/schema: too big to fail 11 years ago
field_reader_test.go helper/schema: add float type 11 years ago
field_writer.go helper/schema: FieldWriter, replace Set 11 years ago
field_writer_map.go Fix failing tests 11 years ago
field_writer_map_test.go helper/schema: test that set can be nil 11 years ago
getsource_string.go helper/schema: diff with set going to 0 elements removes it from state 11 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: Exists API 11 years ago
resource_data.go helper/schema: GetOk now only returns true if set to non-zero value 11 years ago
resource_data_get_source.go helper/schema: diff with set going to 0 elements removes it from state 11 years ago
resource_data_test.go helper/schema: tests that all pass as I was trying to track down a bug 11 years ago
resource_test.go Merge pull request #766 from hashicorp/f-exists-api 11 years ago
schema.go helper/schema: some more test cases, revert some weird behavior from 11 years ago
schema_test.go helper/schema: tests that all pass as I was trying to track down a bug 11 years ago
set.go helper/schema: use interface for equality check 11 years ago
set_test.go Sets should init only once... 11 years ago
valuetype.go helper/schema: zero value of a set should be empty 11 years ago
valuetype_string.go regenerate with new stringer. 11 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.