Skip to content

Commit

Permalink
update docs and tools
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickcping committed Nov 18, 2024
1 parent eebaa13 commit e1166c2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ default: install

tools:
@echo "==> Installing tools..."
go generate -tags tools tools/tools.go
go generate -tags tools tools/main.go

fmtcheck:
@echo "==> Formatting Terraform documentation examples with terraform fmt..."
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The PingOne DaVinci Terraform provider is a plugin for [Terraform](https://www.t

## Requirements
* Terraform 1.1+
* Go 1.21+ (for local development builds)
* Go 1.23.3+ (for local development builds)

## Quickstarts

Expand Down
6 changes: 3 additions & 3 deletions contributing/development-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Requirements

- [Terraform](https://www.terraform.io/downloads.html) 1.1+ (to run acceptance tests)
- [Go](https://golang.org/doc/install) 1.21+ (to build and test the provider plugin)
- [Go](https://golang.org/doc/install) 1.23.3+ (to build and test the provider plugin)

## Quick Start

Expand Down Expand Up @@ -78,7 +78,7 @@ Occasionally, development may include changes to the [DaVinci GO SDK](https://gi
```
module github.com/pingidentity/terraform-provider-davinci
go 1.21
go 1.23.3
replace github.com/samir-gandhi/davinci-client-go => ../davinci-client-go
Expand All @@ -94,6 +94,6 @@ require (
Once updated, run the following to update the vendor cache and build the project:

```shell
$ go mod vendor
$ go work vendor
$ make build
```

0 comments on commit e1166c2

Please sign in to comment.