Implement read-only Dynu Terraform provider skeleton

This commit is contained in:
beatz174-bit
2026-04-21 13:02:42 +10:00
parent 0889d83a0a
commit b268d7a6aa
16 changed files with 1041 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
package main
import (
"context"
"log"
"github.com/hashicorp/terraform-plugin-framework/providerserver"
"github.com/dynu/terraform-provider-dynu/internal/provider"
)
func main() {
err := providerserver.Serve(context.Background(), provider.New("dev"), providerserver.ServeOpts{
Address: "registry.terraform.io/dynu/dynu",
})
if err != nil {
log.Fatal(err.Error())
}
}