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 ``` v0.10.0 ``` ### Use-cases When validating a Terraform configuration, there are the following high level concepts: * HCL syntax checking by Terraform core, such as allowed...

tech-debt
thinking

### Module version ``` github.com/hashicorp/terraform-plugin-framework v0.6.1 ``` ### Relevant provider source code ```go "members": { Description: "The members of the group", Optional: true, Computed: true, Attributes: tfsdk.SetNestedAttributes(map[string]tfsdk.Attribute{ "email": { Description:...

bug
waiting-response

### Module version ``` v0.10.0 ``` ### Use-cases The website documentation is less than ideal as it has quite a few schema-related pages as top-level in the lengthy side navigation....

documentation

### Module version ``` github.com/hashicorp/terraform-plugin-framework v0.6.1 ``` ### Relevant provider source code ```go type AdvancedApp struct { App // all common config DevDependencies types.Bool `tfsdk:"dev_dependencies"` StartScript types.String `tfsdk:"start_script"` } type...

enhancement
reflection

When trying to reflect a state/plan value into a struct with plain Go types using `Get()`, the framework will throw an error if the value contains a `Null` or `Unknown`...

enhancement

Addresses #161.

enhancement
types
waiting-response

### Module version ``` v0.1.0 ``` ### Use-cases In Terraform Plugin SDK and v0.1.0 of this project, there are currently only a few meaningful valid configurations of `Required`, `Optional`, and...

enhancement
breaking-change
schema

### Module version ``` v0.9.0 ``` ### Use-cases Certain generic attribute plan modifiers will desire performing actions based on the `Attribute` definition itself. A current use case is `RequiresReplace` and...

enhancement

### Use-cases Provider developers across the ecosystem will have some common use cases they will want to research documentation on how to accomplish their goals. For example, how to implement...

documentation

### Module version ``` v0.6.1 ``` ### Use-cases I want to be able to access the provider configuration in custom AttributePlanModifier, so i can set global behaviors or feature flags....

enhancement