Skip to content

Commit ce4b30a

Browse files
authored
Merge pull request #4 from dodevops/bugfix/te/3/fix-helm-provider-version-constraint
fix: Fix helm provider constraint
2 parents a00ec5c + 537a898 commit ce4b30a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ module "azure-basics" {
2020

2121
The following requirements are needed by this module:
2222

23-
- helm (>= 2.4.1)
23+
- helm (>= 2.4.1, < 3.0.0)
2424

2525
## Providers
2626

2727
The following providers are used by this module:
2828

29-
- helm (>= 2.4.1)
29+
- helm (>= 2.4.1, < 3.0.0)
3030

3131
- kubernetes
3232

terraform.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
helm = {
44
source = "hashicorp/helm"
5-
version = ">= 2.4.1"
5+
version = ">= 2.4.1, < 3.0.0"
66
}
77
}
88
}

0 commit comments

Comments
 (0)