From e6ff36a233e7781da0a4e099e2d0486e20352ab8 Mon Sep 17 00:00:00 2001 From: Brian Flad Date: Thu, 21 Jul 2022 13:57:35 -0400 Subject: [PATCH] website/docs/plugin: Update the Which SDK page to include two new framework-only features (#65) Reference: https://github.com/hashicorp/terraform-plugin-framework/pull/396 Reference: https://github.com/hashicorp/terraform-plugin-framework/pull/409 These were included in the terraform-plugin-framework v0.10.0 release and are features not available in terraform-plugin-sdk/v2. --- website/docs/plugin/which-sdk.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/docs/plugin/which-sdk.mdx b/website/docs/plugin/which-sdk.mdx index 14a6cd393..ba083e21e 100644 --- a/website/docs/plugin/which-sdk.mdx +++ b/website/docs/plugin/which-sdk.mdx @@ -41,6 +41,8 @@ should consider using the framework if you would benefit from the ability to: * Use nested attributes. * Use any type as the elements of a map. * Tell when an optional and computed field has been removed from a config. +* Implement schema-based validation that is relative to the current attribute or applies to any list, map, or set element. +* Return warning or error diagnostics during resource destruction. ## Do You Need Any Features That the Framework Doesn't Provide (Yet)?