Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to reflect that Go 1.18 is needed for development. #1847

Merged
merged 3 commits into from
Aug 20, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/1847.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:note
Update workstation setup documentationto reflect newer required Go version
jacobbednarz marked this conversation as resolved.
Show resolved Hide resolved
```
8 changes: 4 additions & 4 deletions contributing/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
## Requirements

- [Terraform](https://www.terraform.io/downloads.html) 0.14+ (to run acceptance tests)
- [Go](https://golang.org/doc/install) 1.17 (to build the provider plugin)
- [Go](https://golang.org/doc/install) 1.18 (to build the provider plugin)

## Quick Start

If you wish to work on the provider, you'll first need [Go](http://www.golang.org)
installed on your machine (version 1.17+ is *required*). You'll also need to
installed on your machine (version 1.18+ is *required*). You'll also need to
correctly setup a [GOPATH](http://golang.org/doc/code.html#GOPATH), as well
as adding `$GOPATH/bin` to your `$PATH`.

Expand Down Expand Up @@ -62,8 +62,8 @@ will use instead of the version from the remote registry.

## Pulling in unreleased changes from Go library (cloudflare-go)

In some scenarios, you may be wanting to make changes in `cloudflare-go` and have
them reflected in the Terraform provider before they are released upstream. To do
In some scenarios, you may be wanting to make changes in `cloudflare-go` and have
them reflected in the Terraform provider before they are released upstream. To do
this, you can update the `go.mod` file locally (do not commit it) using `go mod replace`.

```
Expand Down