Skip to content

Commit

Permalink
chore: update version constraints (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamar7 authored Sep 3, 2024
1 parent 07501d9 commit 8cbc32b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ statement instead the previous block.
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0 |
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 2.8.0 |
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 2.8.0, < 3.0.0 |

### Modules

Expand Down
6 changes: 3 additions & 3 deletions examples/basic/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ terraform {
required_providers {
ibm = {
source = "ibm-cloud/ibm"
version = ">= 1.59.0"
version = ">= 1.59.0, < 2.0.0"
}
helm = {
source = "hashicorp/helm"
version = ">= 2.8.0"
version = ">= 2.8.0, < 3.0.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = ">= 2.16.1"
version = ">= 2.16.1, < 3.0.0"
}
time = {
source = "hashicorp/time"
Expand Down
6 changes: 3 additions & 3 deletions examples/secure/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ terraform {
required_providers {
ibm = {
source = "ibm-cloud/ibm"
version = ">= 1.59.0"
version = ">= 1.59.0, < 2.0.0"
}
helm = {
source = "hashicorp/helm"
version = ">= 2.8.0"
version = ">= 2.8.0, < 3.0.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = ">= 2.16.1"
version = ">= 2.16.1, < 3.0.0"
}
}
}
2 changes: 1 addition & 1 deletion version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
# Use "greater than or equal to" range in modules
helm = {
source = "hashicorp/helm"
version = ">= 2.8.0"
version = ">= 2.8.0, < 3.0.0"
}
}
}

0 comments on commit 8cbc32b

Please sign in to comment.