CDK for Terraform - [!--- Please keep this note for the community ---] ### Community Note - Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request - Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request - If you are interested in working on this issue or have submitted a pull request, please leave a comment <!--- Thank...
## The fix
After upgrading to CDKTF 0.16.x, the Go random provider broke because top-level provider imports no longer resolve resources. Fix: import the resource as a subpath. Instead of: import random "github.com/cdktf/cdktf-provider-random-go/random/v8", use: import random "github.com/cdktf/cdktf-provider-random-go/random/v8/stringresource". Apply the same pattern to other resources (one import per resource subpath), on top of the go.mod setup from hashicorp/terraform-cdk#2146. Reporter-verified.
Thread: gh:hashicorp/terraform-cdk#2856