terraform-plugin-framework
terraform-plugin-framework copied to clipboard
A next-generation framework for building Terraform providers.
### Background The `terraform providers schema -json` command allows Terraform to output provider-based information in machine-readable JSON format. Terraform ecosystem tooling such as [terraform-plugin-docs](https://github.com/hashicorp/terraform-plugin-docs) and the [Terraform Language Server](https://github.com/hashicorp/terraform-ls), rely...
### Module version ``` v1.10.0 currently referenced by the docs ``` ### Use-cases I'm implementing an attribute with a complex type (list of nested objects). The docs [1][2] show how...
## Problem Statement When round-tripping certain floating point numbers such as `MaxFloat32` from Terraform config to a `type.Float32` or a `type.Float64` framework type: ```terraform resource "framework_float64_precision" "test" { float64_attribute =...