diff --git a/GNUmakefile b/GNUmakefile index ea3339a0..c0922adf 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -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..." diff --git a/README.md b/README.md index fd5ef4af..85ba6517 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/contributing/development-environment.md b/contributing/development-environment.md index 13f73686..d2fef3ff 100644 --- a/contributing/development-environment.md +++ b/contributing/development-environment.md @@ -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 @@ -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 @@ -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 ``` \ No newline at end of file