Delete readme, add doc.go to helper/schema

Remove the README that had old user-facing information, replacing
it with a doc.go that describes the package and points to the
plugin SDK for external consumers.
This commit is contained in:
Pam Selle 2021-02-18 12:23:04 -05:00
parent 7f8b8a9046
commit e1c25337c7
2 changed files with 5 additions and 11 deletions

View File

@ -1,11 +0,0 @@
# 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.

View File

@ -0,0 +1,5 @@
// Package schema is a legacy package that used to represent the SDK, which is now its own
// library external to Terraform Core https://github.com/hashicorp/terraform-plugin-sdk
// Some of it is still used by Terraform's remote state backends, but this entire
// package should be removed in the future.
package schema