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

chore(docs): rewrite internal redirects #518

Merged
merged 1 commit into from Oct 20, 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
Expand Up @@ -71,7 +71,7 @@ map[string]tfsdk.Attribute{
## Migration Notes

- When using protocol version 5 specify `ElemType` as `types.ObjectType` when migrating blocks that are computed from SDKv2 to Framework.
- When using protocol version 6, use [nested attributes](https://www.terraform.io/plugin/framework/schemas#attributes-1) when migrating blocks that are computed from SDKv2 to Framework.
- When using protocol version 6, use [nested attributes](/plugin/framework/schemas#attributes-1) when migrating blocks that are computed from SDKv2 to Framework.

## Example

Expand Down
Expand Up @@ -113,7 +113,7 @@ Remember the following differences between SDKv2 and the Framework when completi
a primitive type such as an integer or string, and you use the `Attributes` field for `NestedAttributes`. Refer to
[Providers](/plugin/framework/migrating/providers#example-1) for an example of using a single
nested attribute. Nested attributes are also described in more detail on the
[Schemas](https://www.terraform.io/plugin/framework/schemas#attributes-1) page in the Framework documentation.
[Schemas](/plugin/framework/schemas#attributes-1) page in the Framework documentation.

## Example

Expand Down
Expand Up @@ -12,7 +12,7 @@ description: >-
Attribute validators ensure that attributes do or do not contain specific values. You can use predefined validators for
many use cases, or implement custom validators. Refer to [Schemas - Validators](/plugin/framework/schemas#validators) in
the Framework documentation for details. Refer to the
[Attributes - Custom Validators](/plugin/framework/migrating/validators-custom) page in this guide to learn how to
[Attributes - Custom Validators](/plugin/framework/migrating/attributes-blocks/validators-custom) page in this guide to learn how to
implement custom validators.

This page explains how to migrate a predefined validator from SDKv2 to the Framework.
Expand Down
Expand Up @@ -9,7 +9,7 @@ description: >-

-> **Note:** The Plugin Framework is in beta.

Practitioners can use the [`terraform import` command](https://www.terraform.io/cli/commands/import) to let Terraform
Practitioners can use the [`terraform import` command](/cli/commands/import) to let Terraform
begin managing existing infrastructure by importing an existing resource into their Terraform project's state. A
resource's importer function implements the logic to add a resource to Terraform's state. Refer to
[Resources - Import](/plugin/framework/resources/import) in the Framework documentation for details.
Expand Down
2 changes: 1 addition & 1 deletion website/docs/plugin/framework/provider-servers.mdx
Expand Up @@ -86,4 +86,4 @@ Refer to the [acceptance testing](/plugin/framework/acctests) page for implement

### Debugging

Refer to the [debugging](/plugin/framework/) page for implementation details.
Refer to the [debugging](/plugin/framework) page for implementation details.