Merge pull request #1994 from terraform-providers/paddy_1_11-1

Use Go v1.11.0
This commit is contained in:
Paddy 2018-09-05 15:29:23 -07:00 committed by GitHub
commit 3effce0891
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 29 additions and 29 deletions

View File

@ -4,7 +4,7 @@ services:
- docker
language: go
go:
- 1.9.1
- "1.11"
install:
# This script is used by the Travis build to install a cookie for

View File

@ -18,8 +18,8 @@ This provider plugin is maintained by:
Requirements
------------
- [Terraform](https://www.terraform.io/downloads.html) 0.10.x
- [Go](https://golang.org/doc/install) 1.9 (to build the provider plugin)
- [Terraform](https://www.terraform.io/downloads.html) 0.10+
- [Go](https://golang.org/doc/install) 1.11.0 or higher
Building The Provider
---------------------
@ -51,7 +51,7 @@ To upgrade to the latest stable version of the Google provider run `terraform in
Developing the Provider
---------------------------
If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.9+ 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`.
If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.11+ 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`.
To compile the provider, run `make build`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory.