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
Clint Shryock 78e7519efa
Updates from go generate
11 years ago
..
README.md
equal.go
field_reader.go Condense switch fallthroughs into expr lists 11 years ago
field_reader_config.go Condense switch fallthroughs into expr lists 11 years ago
field_reader_config_test.go helper/schema: FieldReaderConfig detects computed maps 11 years ago
field_reader_diff.go Condense switch fallthroughs into expr lists 11 years ago
field_reader_diff_test.go
field_reader_map.go Condense switch fallthroughs into expr lists 11 years ago
field_reader_map_test.go helper/schema: FieldReaderMap should mark map as exists if anything set 11 years ago
field_reader_multi.go
field_reader_multi_test.go
field_reader_test.go
field_writer.go
field_writer_map.go Condense switch fallthroughs into expr lists 11 years ago
field_writer_map_test.go
getsource_string.go
provider.go helper/schema: validate ConflictsWith against top-level 11 years ago
provider_test.go
resource.go helper/schema: blank ID refresh doesn't exist [GH-1905] 11 years ago
resource_data.go helper/schema: test real nil pointer to ResourceData.Set 11 years ago
resource_data_get_source.go
resource_data_test.go helper/schema: tweak test anotation 11 years ago
resource_test.go helper/schema: blank ID refresh doesn't exist [GH-1905] 11 years ago
schema.go Condense switch fallthroughs into expr lists 11 years ago
schema_test.go helper/schema: call InternalValidate w/ schemaMap{} 11 years ago
set.go Implement AWS IAM resources 11 years ago
set_test.go Prevent negative hashcodes for all set operations. 11 years ago
valuetype.go
valuetype_string.go Updates from go generate 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.