Update README.md with Google-specific changes.

This commit is contained in:
Riley Karson 2017-06-12 10:14:00 -07:00 committed by GitHub
parent 794e271a7c
commit eeaf659c97

View File

@ -16,23 +16,24 @@ Requirements
Building The Provider
---------------------
Clone repository to: `$GOPATH/src/github.com/terraform-providers/terraform-provider-$PROVIDER_NAME`
Clone repository to: `$GOPATH/src/github.com/terraform-providers/terraform-provider-google`
```sh
$ mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers
$ git clone git@github.com:terraform-providers/terraform-provider-$PROVIDER_NAME
$ git clone git@github.com:terraform-providers/terraform-provider-google
```
Enter the provider directory and build the provider
```sh
$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-$PROVIDER_NAME
$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-google
$ make build
```
Using the provider
----------------------
## Fill in for each provider
See the [Google Provider documentation](https://www.terraform.io/docs/providers/google/index.html) to get started using the Google provider.
Developing the Provider
---------------------------
@ -44,7 +45,7 @@ To compile the provider, run `make build`. This will build the provider and put
```sh
$ make bin
...
$ $GOPATH/bin/terraform-provider-$PROVIDER_NAME
$ $GOPATH/bin/terraform-provider-google
...
```