Skip to content

Commit

Permalink
Merge pull request #16 from sftim/20231116_revise_version_pins
Browse files Browse the repository at this point in the history
improvement: Revise version requirements
  • Loading branch information
sftim authored Nov 16, 2023
2 parents f90a244 + c652755 commit 1814870
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ will configure using the following code:
_main.tf_:
```hcl
terraform {
required_version = ">= 0.13.6, < 2.0"
required_version = "~> 1.0"
backend "remote" {
organization = "scalefactory"
Expand Down Expand Up @@ -129,14 +129,14 @@ Apache 2 Licensed. See [LICENSE](LICENSE) for full details.

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.6, < 2.0 |
| <a name="requirement_tfe"></a> [tfe](#requirement\_tfe) | ~> 0.48.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.0 |
| <a name="requirement_tfe"></a> [tfe](#requirement\_tfe) | ~> 0.50.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_tfe"></a> [tfe](#provider\_tfe) | ~> 0.48.0 |
| <a name="provider_tfe"></a> [tfe](#provider\_tfe) | ~> 0.50.0 |

## Resources

Expand Down
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
terraform {
required_version = ">= 0.13.6, < 2.0"
required_version = "~> 1.0"

required_providers {
tfe = {
source = "hashicorp/tfe"
version = "~> 0.48.0"
version = "~> 0.50.0"
}
}
}

0 comments on commit 1814870

Please sign in to comment.