Hi, I'm the contributor of TencentCloud Terraform ...
# general
p
Hi, I'm the contributor of TencentCloud Terraform Provider. I'm using the [pulumi-tf-provider-boilerplate](https://github.com/pulumi/pulumi-tf-provider-boilerplate) the bridge to build the [Pulumi Provider](https://github.com/tencentcloudstack/pulumi-tencentcloud), the progress working good so far, and now I ran into a small problem: After I run
make tfgen
, the
provider/cmd/pulumi-resource-tencentcloud/schema.json
is generated as expected, but in the
nodejs
language examples, I noticed the
description
field, the import statement imports is:
Copy code
```typescript
import * as pulumi from "@pulumi/pulumi";

// Unexpeceted package name, expect `@tencentcloud_iac/pulumi` which I defined in resource `PackageName`
import * as tencentcloud from "@pulumi/tencentcloud"; 
```
I've found the probably [source code](https://github.com/pulumi/pulumi-terraform-bridge/blob/master/pkg/tf2pulumi/gen/nodejs/generator.go#L340) here. The value of the import was hard-coded to
@pulumi/xxxx
. So how to handle the import statement of third-party packages, or what other solution exist to publish my provider to the
@pulumi
organization?
l
@powerful-noon-84115 can you file an issue in that repo?
p
@limited-rainbow-51650 The issue #626 created.