File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ Follow these steps to bridge a Terraform Provider to Pulumi.
4646 package main
4747
4848 import (
49- "github.com/pulumi/pulumi-terraform-bridge/v3/pf/tfgen"
49+ "github.com/pulumi/pulumi-terraform-bridge/v3/pkg/ pf/tfgen"
5050 // import myprovider
5151 )
5252
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Framework](https://github.com/hashicorp/terraform-plugin-framework?tab=readme).
1414
15151 . Find the tfgen binary ` main ` that calls ` tfgen.Main ` from
1616 ` github.com/pulumi/pulumi-terraform-bridge/v3/pkg/tfgen ` and update it to call
17- ` tfgen.MainWithMuxer ` from ` github.com/pulumi/pulumi-terraform-bridge/v3/pf/tfgen ` .
17+ ` tfgen.MainWithMuxer ` from ` github.com/pulumi/pulumi-terraform-bridge/v3/pkg/ pf/tfgen ` .
1818
1919 Note that the extra version parameter is removed from ` tfgen.Main ` , so this code:
2020
@@ -29,7 +29,7 @@ Framework](https://github.com/hashicorp/terraform-plugin-framework?tab=readme).
2929 Becomes:
3030
3131 ``` go
32- import " github.com/pulumi/pulumi-terraform-bridge/v3/pf/tfgen"
32+ import " github.com/pulumi/pulumi-terraform-bridge/v3/pkg/ pf/tfgen"
3333
3434 ...
3535
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import (
2121)
2222
2323// Defines bridged provider metadata that is pre-computed at build time with tfgen (tfgen
24- // ("github.com/pulumi/pulumi-terraform-bridge/v3/pf/tfgen") and typically made available to the provider
24+ // ("github.com/pulumi/pulumi-terraform-bridge/v3/pkg/ pf/tfgen") and typically made available to the provider
2525// binary at runtime with [embed].
2626//
2727// [embed]: https://pkg.go.dev/embed
You can’t perform that action at this time.
0 commit comments