Skip to content

Commit

Permalink
Update docs for 0.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisarcand committed Dec 15, 2021
1 parent 1b0ff85 commit 4785f26
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Declare the provider in your configuration and `terraform init` will automatical
terraform {
required_providers {
tfe = {
version = "~> 0.26.0"
version = "~> 0.27.0"
}
}
}
Expand All @@ -46,7 +46,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are

```hcl
provider "tfe" {
version = "~> 0.26.0"
version = "~> 0.27.0"
...
}
```
Expand Down
6 changes: 3 additions & 3 deletions website/docs/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ automatically installed by `terraform init` in the future:
terraform {
required_providers {
tfe = {
version = "~> 0.26.0"
version = "~> 0.27.0"
}
}
}
Expand All @@ -87,7 +87,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are

```hcl
provider "tfe" {
version = "~> 0.26.0"
version = "~> 0.27.0"
...
}
```
Expand All @@ -100,7 +100,7 @@ For more information on provider installation and constraining provider versions
provider "tfe" {
hostname = var.hostname
token = var.token
version = "~> 0.26.0"
version = "~> 0.27.0"
}
# Create an organization
Expand Down

0 comments on commit 4785f26

Please sign in to comment.