You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tfsdk: Add support for single nested mode blocks (#477)
Reference: #400
This support is required for provider developers to migrate from terraform-plugin-sdk to terraform-plugin-framework without affecting practitioner configurations or requiring state upgrades.
For example:
```terraform
resource "examplecloud_thing" "example" {
timeouts {
create = "5m"
}
}
```
tfsdk: Schema definitions may now introduce single nested mode blocks, however this support is only intended for migrating terraform-plugin-sdk timeouts blocks. New implementations should prefer single nested attributes instead.
0 commit comments