terraform-plugin-framework icon indicating copy to clipboard operation
terraform-plugin-framework copied to clipboard

A next-generation framework for building Terraform providers.

Results 163 terraform-plugin-framework issues
Sort by recently updated
recently updated
newest added

### Module version ``` v1.6.1 ``` ### Relevant provider source code ```go function.ObjectParameter{ Name: "args", Description: "Extra variables for use in format.", AllowNullValue: true, AttributeTypes: map[string]attr.Type{ "location": types.StringType, "extra_tokens": types.MapType{ElemType:...

bug
enhancement

### Module version ```console % go list -m github.com/hashicorp/terraform-plugin-framework/... github.com/hashicorp/terraform-plugin-framework v1.6.1 ``` ### Use-cases If the schema definition of a `List` (or `Set`) attribute contains both `ElementType` and `CustomType` then...

enhancement

### Module version ``` v1.6.1 ``` ### Use-cases A bug relating to the handling of floating point values within the `reflect` package in _terraform-plugin-framework_ was discovered as described in [Convert...

enhancement
types
reflection

A number of requests have been made to support embedded structs in models. #242 has been open for over 3 years. However I understand this might be a fairly big...

### Module version ``` v1.6.0 ``` ### Use-cases Provider developers encountering Terraform Provider development, or the framework schema/type system, for the first time may want to introduce default value handling...

documentation

### Module version ``` v1.6.0 ``` ### Use-cases Similar to #933 there might be other `tftypes` package `Transform()`/`Walk()` logic which may or may not be fully handling the `error` return...

bug

### Module version v1.4.2 is current at the time I'm writing this, although this issue is discussing an entirely new capability. ### Use-cases It's relatively common to write a module...

enhancement
types
protocol

### Module version ``` v1.4.1 ``` ### Relevant provider source code `ReadResource` case: ```go package provider import ( "context" "github.com/hashicorp/terraform-plugin-framework/resource" "github.com/hashicorp/terraform-plugin-framework/resource/schema" "github.com/hashicorp/terraform-plugin-framework/types" ) var ( _ resource.Resource = &Testing262Resource{} )...

bug

### Module version ``` v1.5.0 ``` ### Use-cases Certain resources/APIs do not like "concurrent" operations, where the API is used at the same time as other operations (or in "too...

enhancement

### Use-cases The semantic equality of an attribute sometimes depend on the state of some other resources on the cloud. Without the access to the cloud provider's Cloud SDK's (e.g....

enhancement