aiven / terraform-provider-aiven

Aiven Terraform Provider
https://registry.terraform.io/providers/aiven/aiven/latest/docs
MIT License
122 stars 68 forks source link

Please create a Terraform CDK provider for Aiven #971

Open markl11 opened 1 year ago

markl11 commented 1 year ago

What is currently missing?

There is currently no Terraform CDK provider for Aiven:

https://github.com/orgs/cdktf/repositories?q=cdktf-provider-

How could this be improved?

There is no CDK provider so anything would be an improvement!

xiehan commented 1 year ago

Hi @markl11! The link you provided is to CDKTF's pre-built providers. The good news is that pre-built providers have always been a totally optional performance optimization, and you can still use CDKTF with any provider available on the Terraform Registry, including Aiven! The only difference is that you need to use "cdktf get" to generate the provider bindings locally; you can find documentation on how to do so here: https://developer.hashicorp.com/terraform/cdktf/concepts/providers#add-provider-to-cdktf-json or just run the command cdktf provider add aiven/aiven and it'll generate the provider bindings for you locally and allow you to use this provider in your project.

Hope that makes sense; let me know if any of this is unclear and I'll do my best to explain further!