X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=README.md;h=ccdb57dd330173ee344d689b9e5334590ff2c3d7;hb=689f520e1dae40936490b47043559d182a817c89;hp=1c669794078e19fac6cd793c7e98fd224e8aa671;hpb=21252084ae8c5f3321b45008fd5a6b162b293407;p=github%2Ffretlink%2Fterraform-provider-statuscake.git diff --git a/README.md b/README.md index 1c66979..ccdb57d 100644 --- a/README.md +++ b/README.md @@ -5,28 +5,28 @@ Terraform Provider - [![Gitter chat](https://badges.gitter.im/hashicorp-terraform/Lobby.png)](https://gitter.im/hashicorp-terraform/Lobby) - Mailing list: [Google Groups](http://groups.google.com/group/terraform-tool) -![Terraform](https://rawgithub.com/hashicorp/terraform/master/website/source/assets/images/logo-hashicorp.svg) + Requirements ------------ - [Terraform](https://www.terraform.io/downloads.html) 0.10.x -- [Go](https://golang.org/doc/install) 1.8 (to build the provider plugin) +- [Go](https://golang.org/doc/install) 1.11 (to build the provider plugin) Building The Provider --------------------- -Clone repository to: `$GOPATH/src/github.com/hashicorp/terraform-provider-$PROVIDER_NAME` +Clone repository to: `$GOPATH/src/github.com/terraform-providers/terraform-provider-statuscake` ```sh -$ mkdir -p $GOPATH/src/github.com/hashicorp; cd $GOPATH/src/github.com/hashicorp -$ git clone git@github.com:hashicorp/terraform-provider-$PROVIDER_NAME +$ mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers +$ git clone git@github.com:terraform-providers/terraform-provider-statuscake ``` Enter the provider directory and build the provider ```sh -$ cd $GOPATH/src/github.com/hashicorp/terraform-provider-$PROVIDER_NAME +$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-statuscake $ make build ``` @@ -37,14 +37,14 @@ Using the provider 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.8+ 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. ```sh $ make bin ... -$ $GOPATH/bin/terraform-provider-$PROVIDER_NAME +$ $GOPATH/bin/terraform-provider-statuscake ... ```