You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[CI] (Docs) Promote tfplugindocs to a go.mod tool directive
Replaces the @v0.25.0 install pin in tools/tools.go with a
`tool github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs`
directive in go.mod, so the version is locked by go.sum and the
binary is built on demand via `go tool` rather than installed to
$GOBIN. Removes the now-redundant tools/ build-tagged file and
`tools` make target.
Copy file name to clipboardExpand all lines: DEVELOPMENT.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -117,7 +117,7 @@ Documentation for this provider is autogenerated using the [`tfplugindocs`][8] C
117
117
118
118
- Ensure each Schema attribute in the code contains a `Description` field
119
119
- Place example HCL configuration files or import scripts in the `examples` folder under your resource/data-source
120
-
- Run `make docs` to retrieve the `tfplugindocs` binary and generate documentation
120
+
- Run `make docs` to generate documentation (the `tfplugindocs` binary is pinned via the `tool` directive in `go.mod`and built on demand via `go tool`)
0 commit comments