Tag release v0.2.3

main
nleiva 2022-04-29 01:18:35 -04:00
parent b9596f9f36
commit 11c6de944e
2 changed files with 5 additions and 3 deletions

View File

@ -3,7 +3,7 @@ HOSTNAME=github.com
NAMESPACE=nleiva NAMESPACE=nleiva
NAME=nautobot NAME=nautobot
BINARY=terraform-provider-${NAME} BINARY=terraform-provider-${NAME}
VERSION=0.2.1 VERSION=0.2.3
OS_ARCH=$(shell go env GOOS)_$(shell go env GOARCH) OS_ARCH=$(shell go env GOOS)_$(shell go env GOARCH)

View File

@ -1,5 +1,7 @@
# Terraform Provider Nautobot # Terraform Provider Nautobot
Nautobot provider created for educational purposes. You can fork it for long term development :-)
## Requirements ## Requirements
- [Terraform](https://www.terraform.io/downloads.html) >= 0.13.x - [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). 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`. In order to run the full suite of Acceptance tests, run `make testacc`.