How to develop custom provider for cdktf?

I can’t seem to find ANY documentation for how to develop my custom provider for CDKTF. Is there any starting point, docs that I can use?

There isn’t a way to write a custom provider directly in cdktf. You can write one for Terraform (instructions) and then generate local bindings for cdktf.
Custom Resources · Issue #661 · hashicorp/terraform-cdk · GitHub is a related issue for requesting this functionality.

1 Like

I see. Looks like GitHub - hashicorp/terraform-plugin-framework: A next-generation framework for building Terraform providers. this is a new way of developing a provider for Terraform. Hopefully I should be able to convert this into CDKTF then, thanks.