terraform/helper/schema
Chris Marchesi 9d7fb89114 core: Adding Sensitive attribute to resource schema
This an effort to address hashicorp/terraform#516.

Adding the Sensitive attribute to the resource schema, opening up the
ability for resource maintainers to mark some fields as sensitive.
Sensitive fields are hidden in the output, and, possibly in the future,
could be encrypted.
2016-05-29 22:18:44 -07:00
..
README.md
data_source_resource_shim.go helper/schema: emit warning when using data source resource shim 2016-05-14 08:26:36 -07:00
equal.go
field_reader.go
field_reader_config.go helper/schema: Read native maps from configuration 2016-05-10 14:49:14 -04:00
field_reader_config_test.go helper/schema: Read native maps from configuration 2016-05-10 14:49:14 -04:00
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
provider.go helper/schema: Resource can be writable or not 2016-05-14 08:26:36 -07:00
provider_test.go core: New ResourceProvider methods for data resources 2016-05-14 08:26:36 -07:00
resource.go helper/schema: emit warning when using data source resource shim 2016-05-14 08:26:36 -07:00
resource_data.go Change taint behaviour to act as a normal resource 2016-05-26 19:55:26 -05:00
resource_data_get_source.go
resource_data_test.go helper/schema: cleaner way to store Ephemeral 2016-05-11 13:02:31 -07:00
resource_importer.go helper/schema: pass through import state func 2016-05-16 10:03:57 -07:00
resource_test.go helper/schema: Resource can be writable or not 2016-05-14 08:26:36 -07:00
schema.go core: Adding Sensitive attribute to resource schema 2016-05-29 22:18:44 -07:00
schema_test.go
serialize.go
serialize_test.go
set.go
set_test.go
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.