diff --git a/README.md b/README.md index bb402aa4..15b36bc3 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ make #### 2. Install the provider The expected location for the Harvester provider for that target platform within one of the local search directories would be like the following: ```bash -registry.terraform.io/harvester/harvester/0.2.4/linux_amd64/terraform-provider-harvester_v0.2.4 +registry.terraform.io/harvester/harvester/0.2.5/linux_amd64/terraform-provider-harvester_v0.2.5 ``` The default location for locally-installed providers is one of the following, depending on which operating system you are running Terraform under: @@ -45,7 +45,7 @@ The default location for locally-installed providers is one of the following, de Place the provider into the plugins directory, for example: ```bash -version=0.2.4 +version=0.2.5 arch=linux_amd64 terraform_harvester_provider_bin=./bin/terraform-provider-harvester diff --git a/docs/index.md b/docs/index.md index ebafe7d9..d0f582c9 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,7 +18,7 @@ terraform { required_providers { harvester = { source = "registry.terraform.io/harvester/harvester" - version = "~> 0.2.4" + version = "~> 0.2.5" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 3a241e7b..5dc08297 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -3,7 +3,7 @@ terraform { required_providers { harvester = { source = "registry.terraform.io/harvester/harvester" - version = "~> 0.2.4" + version = "~> 0.2.5" } } }