Skip to content

Commit 4cb58cc

Browse files
authored
fix: do not pin module dependencies (#42)
Reduce the constraint on the provider's version. This should reduce the amount of renovate updates we receive, without big impact, as we have dedicated lock files in the /example or /dev directories.
1 parent b773f57 commit 4cb58cc

File tree

2 files changed

+12
-38
lines changed

2 files changed

+12
-38
lines changed

.terraform.lock.hcl

Lines changed: 6 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

providers.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,28 @@ terraform {
22
required_providers {
33
local = {
44
source = "hashicorp/local"
5-
version = "2.5.1"
5+
version = ">= 2.5.1, < 3.0.0"
66
}
77
null = {
88
source = "hashicorp/null"
9-
version = "3.2.2"
9+
version = ">= 3.2.2, < 4.0.0"
1010
}
1111
tls = {
1212
source = "hashicorp/tls"
13-
version = "4.0.5"
13+
version = ">= 4.0.5, < 5.0.0"
1414
}
1515
helm = {
1616
source = "hashicorp/helm"
17-
version = "2.14.1"
17+
version = ">= 2.14.1, < 3.0.0"
1818
}
1919
kubernetes = {
2020
source = "hashicorp/kubernetes"
21-
version = "2.31.0"
21+
version = ">= 2.31.0, < 3.0.0"
2222
}
2323

2424
hcloud = {
2525
source = "hetznercloud/hcloud"
26-
version = "1.48.0"
26+
version = ">= 1.48.0, < 2.0.0"
2727
}
2828
}
2929
}

0 commit comments

Comments
 (0)