Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linking to the framework migration guide #1098

Merged
merged 1 commit into from Nov 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions website/data/plugin-sdk-nav-data.json
@@ -1,6 +1,7 @@
[
{ "heading": "SDKv2" },
{ "title": "Overview", "path": "" },
{ "title": "Migrate to the Framework", "href": "https://developer.hashicorp.com/terraform/plugin/framework/migrating" },
{
"title": "Schemas",
"routes": [
Expand Down
2 changes: 2 additions & 0 deletions website/docs/plugin/sdkv2/index.mdx
Expand Up @@ -31,6 +31,8 @@ Terraform Plugin SDKv2 is an established way to develop Terraform Plugins on [pr

## Migrate to Terraform Plugin Framework

Use the [migration guide](/plugin/framework/migrating) to migrate preexisting providers from SDKv2 to the Terraform Plugin Framework.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Use the [migration guide](/plugin/framework/migrating) to migrate preexisting providers from SDKv2 to the Terraform Plugin Framework.
Use the [migration guide](/plugin/framework/migrating) to migrate existing providers from SDKv2 to the Terraform Plugin Framework.


The [terraform-plugin-framework](/plugin/framework) is a new way to develop Terraform providers, offering improvements and new features from Terraform Plugin SDKv2. You can refactor individual resources and data sources over time with the following compatibility:

* Terraform 0.12 and later: [Combine your provider](/plugin/mux/combining-protocol-version-5-providers) with the framework provider. You will not be able to use [protocol version 6](/plugin/how-terraform-works#protocol-version-6) features.
Expand Down