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
James Bardin 2e6a44d5ff
reify the list values before validation
9 years ago
..
README.md
backend.go helper/schema: framework for Backends 9 years ago
backend_test.go helper/schema: framework for Backends 9 years ago
data_source_resource_shim.go
equal.go
field_reader.go Check for interpolated values when reading a map 9 years ago
field_reader_config.go helper/schema: PromoteSingle for legacy support of "maybe list" types 9 years ago
field_reader_config_test.go Check for interpolated values when reading a map 9 years ago
field_reader_diff.go Allow primitive type in maps via all FieldReaders 10 years ago
field_reader_diff_test.go Allow primitive type in maps via all FieldReaders 10 years ago
field_reader_map.go Allow primitive type in maps via all FieldReaders 10 years ago
field_reader_map_test.go Allow primitive type in maps via all FieldReaders 10 years ago
field_reader_multi.go
field_reader_multi_test.go
field_reader_test.go Allow primitive type in maps via all FieldReaders 10 years ago
field_writer.go
field_writer_map.go
field_writer_map_test.go
getsource_string.go
provider.go Add schema.Provider.TestReset method 9 years ago
provider_test.go Add schema.Provider.TestReset method 9 years ago
provisioner.go provisioners/file: use the old communicator.New just to minimize risk 9 years ago
provisioner_test.go helper/schema: provisioner allows for nil state 9 years ago
resource.go helper/schema: Add configurable Timeouts (#12311) 9 years ago
resource_data.go helper/schema: Add configurable Timeouts (#12311) 9 years ago
resource_data_get_source.go
resource_data_test.go helper/schema: Add configurable Timeouts (#12311) 9 years ago
resource_importer.go
resource_test.go helper/schema: Rename Timeout resource block to Timeouts (#12533) 9 years ago
resource_timeout.go helper/schema: Rename Timeout resource block to Timeouts (#12533) 9 years ago
resource_timeout_test.go helper/schema: Rename Timeout resource block to Timeouts (#12533) 9 years ago
schema.go reify the list values before validation 9 years ago
schema_test.go interpolation strings were beeing validated 9 years ago
serialize.go
serialize_test.go
set.go
set_test.go
testing.go provisioners/remote-exec: switch to helper/schema 9 years ago
valuetype.go
valuetype_string.go

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.