mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-23 23:22:57 -06:00
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:
parent
7f8b8a9046
commit
e1c25337c7
@ -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.
|
5
internal/legacy/helper/schema/doc.go
Normal file
5
internal/legacy/helper/schema/doc.go
Normal 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
|
Loading…
Reference in New Issue
Block a user