infra: allow more recent ovh versions

This commit is contained in:
Romain Paquet 2026-01-05 21:42:17 +01:00
parent 4ce5811615
commit d162591696
2 changed files with 3 additions and 2 deletions

View file

@ -41,6 +41,7 @@ provider "registry.opentofu.org/hetznercloud/hcloud" {
provider "registry.opentofu.org/ovh/ovh" {
version = "2.10.0"
constraints = "> 2.5.0"
hashes = [
"h1:6CHM/tHZ7vAvQKtdqurs6ExO+46gpFooZ0zdaW74DKE=",
"zh:1582485c59b5e25fa407417de3040dfc31bfec3f9b884d51953f6625b930d2f6",

View file

@ -6,7 +6,7 @@ terraform {
}
ovh = {
source = "ovh/ovh"
version = "~> 2.5.0"
version = "> 2.5.0"
}
assert = {
source = "hashicorp/assert"