Tag release v0.2.3
parent
b9596f9f36
commit
11c6de944e
|
|
@ -3,7 +3,7 @@ HOSTNAME=github.com
|
|||
NAMESPACE=nleiva
|
||||
NAME=nautobot
|
||||
BINARY=terraform-provider-${NAME}
|
||||
VERSION=0.2.1
|
||||
VERSION=0.2.3
|
||||
OS_ARCH=$(shell go env GOOS)_$(shell go env GOARCH)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
# Terraform Provider Nautobot
|
||||
|
||||
Nautobot provider created for educational purposes. You can fork it for long term development :-)
|
||||
|
||||
## Requirements
|
||||
|
||||
- [Terraform](https://www.terraform.io/downloads.html) >= 0.13.x
|
||||
|
|
@ -61,9 +63,9 @@ resource "nautobot_manufacturer" "new" {
|
|||
|
||||
If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (see [Requirements](#requirements) above).
|
||||
|
||||
To compile the provider, run `go install`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory.
|
||||
To compile the provider, run `make install`.
|
||||
|
||||
To generate or update documentation, run `go generate`.
|
||||
To generate or update documentation, run `go generate ./...`.
|
||||
|
||||
In order to run the full suite of Acceptance tests, run `make testacc`.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue