terraform/helper/schema
Martin Atkins b0da5b1ce5 core: Remove the last few HIL remnants
We've not been using HIL in the main codepaths since Terraform 0.12, but
some references to it (and some supporting functionality in Terraform)
stuck around due to interactions with types we'd kept around to support
legacy shims.

However, removing the configs.RawConfig field from
terraform.ResourceConfig disconnects that subtree of dependencies from
everything else, allowing us to remove it. This is safe because the only
remaining uses of terraform.ResourceConfig are shims from values that
were already evaluated using the HCL 2 API, and thus they never need
the "just in time" HIL evaluation that ResourceConfig.interpolateForce
used to do.

We also had some HIL references in configs/hcl2shim that were previously
in support of the "terraform 0.12upgrade" command, but the implementation
of that command is now removed.

There was one remaining reference to HIL in a now-unused function in the
helper/schema package, which I removed entirely here.

This then allows us to remove the HIL dependency entirely, and also to
clean up some remaining old remants of the legacy "config" package that
we'd recently moved into the "configs" package pending further pruning.
2020-09-02 15:53:33 -07:00
..
README.md
backend.go move hcl2shim package to configs 2019-08-06 19:58:58 -04:00
backend_test.go don't panic of the users aborts backend input 2019-03-01 18:45:06 -05:00
core_schema.go Fix typos (#24531) 2020-04-13 08:34:40 -04:00
core_schema_test.go remove SkipCoreTypeCheck 2019-05-14 18:05:30 -04:00
data_source_resource_shim.go Deprecated -> DeprecationMessage. 2018-06-20 11:21:46 -07:00
equal.go
field_reader.go helper/resource: Ignore Removed attributes for ImportStateVerify 2019-04-16 11:14:49 -07:00
field_reader_config.go prevent sdk panics in 2 specific cases 2019-06-25 14:24:32 -04:00
field_reader_config_test.go move hcl2shim package to configs 2019-08-06 19:58:58 -04:00
field_reader_diff.go prevent sdk panics in 2 specific cases 2019-06-25 14:24:32 -04:00
field_reader_diff_test.go helper/schema: handle TypeMap elem consistently with other collection types 2018-03-14 14:50:41 -07:00
field_reader_map.go don't modify argument slices 2018-12-10 11:59:27 -05:00
field_reader_map_test.go helper/schema: handle TypeMap elem consistently with other collection types 2018-03-14 14:50:41 -07:00
field_reader_multi.go
field_reader_multi_test.go Revert "helper/schema: Make nested Set(s) in List(s) work" (#7436) 2016-06-30 10:48:52 -05:00
field_reader_test.go helper/schema: handle TypeMap elem consistently with other collection types 2018-03-14 14:50:41 -07:00
field_writer.go
field_writer_map.go helper/schema: Prevent setSet() panic with typed nil 2019-04-01 20:10:32 -04:00
field_writer_map_test.go helper/schema: Prevent setSet() panic with typed nil 2019-04-01 20:10:32 -04:00
getsource_string.go stringer: Regenerate files with latest version 2019-05-13 15:34:27 +01:00
provider.go Add support for provider metadata to modules. (#22583) 2020-03-05 16:53:24 -08:00
provider_test.go add case to decoder to assert to slice, then each item to a map 2019-08-05 22:08:05 -04:00
provisioner.go prune NewResourceConfig and update tests 2019-08-05 22:08:03 -04:00
provisioner_test.go prune NewResourceConfig and update tests 2019-08-05 22:08:03 -04:00
resource.go Add support for provider metadata to modules. (#22583) 2020-03-05 16:53:24 -08:00
resource_data.go Add support for provider metadata to modules. (#22583) 2020-03-05 16:53:24 -08:00
resource_data_get_source.go Version tools per Go convention under tools.go 2019-10-17 22:23:39 +02:00
resource_data_test.go make sure id really gets set in SetId 2019-01-10 20:28:11 -05:00
resource_diff.go grammatical updates to comments and docs (#20195) 2019-03-21 14:05:41 -07:00
resource_diff_test.go move hcl2shim package to configs 2019-08-06 19:58:58 -04:00
resource_importer.go helper/schema: pass through import state func 2016-05-16 10:03:57 -07:00
resource_test.go move hcl2shim package to configs 2019-08-06 19:58:58 -04:00
resource_timeout.go move hcl2shim package to configs 2019-08-06 19:58:58 -04:00
resource_timeout_test.go add case to decoder to assert to slice, then each item to a map 2019-08-05 22:08:05 -04:00
schema.go Merge pull request #20157 from shinmog/conflictswith 2019-08-08 14:20:35 +01:00
schema_test.go core: Remove the last few HIL remnants 2020-09-02 15:53:33 -07:00
serialize.go core: Avoid crash on empty TypeSet blocks (#14305) 2017-05-09 20:45:53 +02:00
serialize_test.go Add test for TypeMap in a Schema 2016-06-09 16:00:33 -04:00
set.go don't allow computed set elems to be equal 2019-02-05 12:08:17 -05:00
set_test.go helper/schema: More tests for Set.HashEqual 2017-08-15 21:56:01 -07:00
shims.go move hcl2shim package to configs 2019-08-06 19:58:58 -04:00
shims_test.go move hcl2shim package to configs 2019-08-06 19:58:58 -04:00
testing.go prune NewResourceConfig and update tests 2019-08-05 22:08:03 -04:00
valuetype.go Version tools per Go convention under tools.go 2019-10-17 22:23:39 +02:00
valuetype_string.go stringer: Regenerate files with latest version 2019-05-13 15:34:27 +01: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.