terraform/helper/schema
James Bardin 6bc52be0a5 check for IsComputed when validating a schema obj
GH-14784 allowed nested structures to be validate, rather than relying
on the raw value. However this still returns the same validation error
if the structures contain a computed value, since Get will return the
raw string in that case.

This simply skips the validation in the IsComputed case, since there's
nothing that can be checked.
2017-05-24 12:34:53 -04:00
..
README.md
backend.go convert the other context keys to the correct type 2017-04-06 10:51:24 -04:00
backend_test.go
data_source_resource_shim.go
equal.go
field_reader.go
field_reader_config.go helper/schema: PromoteSingle for legacy support of "maybe list" types 2017-01-26 15:09:15 -08:00
field_reader_config_test.go
field_reader_diff.go
field_reader_diff_test.go
field_reader_map.go
field_reader_map_test.go
field_reader_multi.go
field_reader_multi_test.go
field_reader_test.go
field_writer.go
field_writer_map.go
field_writer_map_test.go
getsource_string.go Restore stringer-generated files back to new version 2017-04-21 14:49:18 -07:00
provider.go Add schema.Provider.TestReset method 2017-03-07 11:39:11 -05:00
provider_test.go Add schema.Provider.TestReset method 2017-03-07 11:39:11 -05:00
provisioner.go convert the other context keys to the correct type 2017-04-06 10:51:24 -04:00
provisioner_test.go helper/schema: provisioner allows for nil state 2017-01-26 15:03:28 -08:00
resource.go helper/schema: Add configurable Timeouts (#12311) 2017-03-02 11:07:49 -06:00
resource_data.go helper/schema: Add configurable Timeouts (#12311) 2017-03-02 11:07:49 -06:00
resource_data_get_source.go
resource_data_test.go helper/schema: Add configurable Timeouts (#12311) 2017-03-02 11:07:49 -06:00
resource_importer.go
resource_test.go helper/schema: Rename Timeout resource block to Timeouts (#12533) 2017-03-09 14:40:14 -06:00
resource_timeout.go helper/schema: Rename Timeout resource block to Timeouts (#12533) 2017-03-09 14:40:14 -06:00
resource_timeout_test.go helper/schema: Rename Timeout resource block to Timeouts (#12533) 2017-03-09 14:40:14 -06:00
schema.go check for IsComputed when validating a schema obj 2017-05-24 12:34:53 -04:00
schema_test.go check for IsComputed when validating a schema obj 2017-05-24 12:34:53 -04:00
serialize.go core: Avoid crash on empty TypeSet blocks (#14305) 2017-05-09 20:45:53 +02:00
serialize_test.go
set.go
set_test.go core: Avoid crash on empty TypeSet blocks (#14305) 2017-05-09 20:45:53 +02:00
testing.go provisioners/remote-exec: switch to helper/schema 2017-01-26 15:09:15 -08:00
valuetype.go
valuetype_string.go Restore stringer-generated files back to new version 2017-04-21 14:49:18 -07:00

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.