Commit 0945e86 1 parent 9a35a18 commit 0945e86 Copy full SHA for 0945e86
File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ func New(version string) func() *schema.Provider {
50
50
},
51
51
"api_url" : {
52
52
Description : "URL of the controller API. Can be specified with the `UNIFI_API` environment variable. " +
53
- "You should **NOT** supply the path (`/api`), the SDK will discover the appropriate paths. This is" +
53
+ "You should **NOT** supply the path (`/api`), the SDK will discover the appropriate paths. This is " +
54
54
"to support UDM Pro style API paths as well as more standard controller paths." ,
55
55
56
56
Type : schema .TypeString ,
Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ import (
10
10
"github.com/paultyng/terraform-provider-unifi/internal/provider"
11
11
)
12
12
13
+ // Generate docs for website
14
+ //go:generate go run github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs
15
+
13
16
var (
14
17
// these will be set by the goreleaser configuration
15
18
// to appropriate values for the compiled binary
@@ -29,7 +32,7 @@ func main() {
29
32
30
33
if debugMode {
31
34
// TODO: update this string with the full name of your provider as used in your configs
32
- err := plugin .Debug (context .Background (), "registry.terraform.io/hashicorp/scaffolding " , opts )
35
+ err := plugin .Debug (context .Background (), "registry.terraform.io/paultyng/unifi " , opts )
33
36
if err != nil {
34
37
log .Fatal (err .Error ())
35
38
}
You can’t perform that action at this time.
0 commit comments