Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ repos:
- id: tfupdate
name: Autoupdate helm provider versions
args:
- --args=provider helm --version ">= 3.0.0, < 4.0.0"
- --args=provider helm --version ">= 2.17.0, < 3.0.0"
- id: tfupdate
name: Autoupdate pass provider versions
args:
Expand Down
4 changes: 2 additions & 2 deletions k8s/helm-release/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ Deploy a kubernetes application trough helm
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.3 |
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 3.0.0, < 4.0.0 |
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 2.17.0, < 3.0.0 |
| <a name="requirement_time"></a> [time](#requirement\_time) | ~> 0.9.1 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_helm"></a> [helm](#provider\_helm) | >= 3.0.0, < 4.0.0 |
| <a name="provider_helm"></a> [helm](#provider\_helm) | >= 2.17.0, < 3.0.0 |
| <a name="provider_time"></a> [time](#provider\_time) | ~> 0.9.1 |

## Modules
Expand Down
2 changes: 1 addition & 1 deletion k8s/helm-release/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
helm = {
source = "hashicorp/helm",
version = ">= 3.0.0, < 4.0.0"
version = ">= 2.17.0, < 3.0.0"
}
time = {
source = "hashicorp/time",
Expand Down
Loading