-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README as we require Go 1.11 to develop now
- Loading branch information
Andy Lo-A-Foe
committed
Sep 21, 2018
1 parent
bfbe3bc
commit 1fe5cbc
Showing
1 changed file
with
4 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,25 +14,19 @@ To find out more about HSDP please visit https://www.hsdp.io/ | |
## Requirements | ||
|
||
- [Terraform](https://www.terraform.io/downloads.html) 0.11.x | ||
- [Go](https://golang.org/doc/install) 1.10 (to build the provider plugin) | ||
- [Go](https://golang.org/doc/install) 1.11 or newer (to build the provider plugin) | ||
|
||
## Building The Provider | ||
|
||
Clone repository to: `$GOPATH/src/github.com/philips-software/terraform-provider-hsdp` | ||
Clone repository somehere *outside* your $GOPATH: | ||
|
||
```sh | ||
$ mkdir -p $GOPATH/src/github.com/philips-software; cd $GOPATH/src/github.com/philips-software | ||
$ git clone [email protected]:philips-software/terraform-provider-hsdp | ||
``` | ||
|
||
Enter the provider directory and build the provider | ||
|
||
```sh | ||
$ cd $GOPATH/src/github.com/philips-software/terraform-provider-hsdp | ||
$ cd terraform-provider-hsdp | ||
$ go build . | ||
``` | ||
|
||
Copy the binary to the appropiate plugin directory e.g. `terraform.d/plugins/darwin_amd64/terraform-provider-hsdp` | ||
Copy the resulting binary to the appropiate plugin directory e.g. `terraform.d/plugins/darwin_amd64/terraform-provider-hsdp` | ||
|
||
|
||
## Dockerfile | ||
|