diff --git a/README.md b/README.md index 219b54e2..59f29a58 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.0/linux_amd64/terraform-provider-harvester_v0.2.0 +registry.terraform.io/harvester/harvester/0.2.1/linux_amd64/terraform-provider-harvester_v0.2.1 ``` 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.0 +version=0.2.1 arch=linux_amd64 terraform_harvester_provider_bin=./bin/terraform-provider-harvester diff --git a/docs/index.md b/docs/index.md index b7111050..0b750e78 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.0" + version = "~> 0.2.1" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index cc91c702..ebc21854 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.0" + version = "~> 0.2.1" } } }