Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
Update writing-custom-providers.html.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kenmazaika committed Apr 29, 2020
1 parent 8ddbfd0 commit 4791fca
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions content/source/docs/extend/writing-custom-providers.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,13 @@ This establishes the main function to produce a valid, executable Go binary. The
contents of the main function consume Terraform's `plugin` library. This library
deals with all the communication between Terraform core and the plugin.

The plugin will need to be created as a go module, so you should run the
command to initialize the go module.

```shell
go mod init terraform-provider-example
```

Next, build the plugin using the Go toolchain:

```shell
Expand Down

0 comments on commit 4791fca

Please sign in to comment.