Skip to content

Commit

Permalink
update readme to have clearer install vs build
Browse files Browse the repository at this point in the history
  • Loading branch information
jgramoll committed Aug 6, 2019
1 parent 3747ae0 commit 0515f40
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,7 @@
# terraform-provider-jenkins
Terraform Provider to manage jenkins jobs

## Build and install ##

### Dependencies ###

You should have a working Go environment setup. If not check out the Go [getting started](http://golang.org/doc/install) guide.

[Go modules](https://github.com/golang/go/wiki/Modules) are used for dependency management. To install all dependencies run the following:

```sh
export GO111MODULE=on
go mod vendor
```

### Install ###
## Install ##

You will need to install the binary as a [terraform third party plugin](https://www.terraform.io/docs/configuration/providers.html#third-party-plugins). Terraform will then pick up the binary from the local filesystem when you run `terraform init`.

Expand Down Expand Up @@ -182,3 +169,16 @@ resource "jenkins_job_jira_project_property" "main" {
}
```

## Development ##

### Dependencies ###

You should have a working Go environment setup. If not check out the Go [getting started](http://golang.org/doc/install) guide.

[Go modules](https://github.com/golang/go/wiki/Modules) are used for dependency management. To install all dependencies run the following:

```sh
export GO111MODULE=on
go mod vendor
```

0 comments on commit 0515f40

Please sign in to comment.