customize and make tfgen

This commit is contained in:
2025-04-18 14:50:56 -07:00
parent b06d454398
commit ee34514a18
9 changed files with 3915 additions and 2117 deletions

11
provider/shim/shim.go Normal file
View File

@@ -0,0 +1,11 @@
package shim
import (
tfprovider "github.com/hashicorp/terraform-plugin-framework/provider"
"github.com/lxc/terraform-provider-incus/internal/provider"
)
// Provider returns a Terraform Plugin Framework provider
func Provider() func() tfprovider.Provider {
return provider.NewIncusProvider("dev")
}