From 9db1dd51cf7324420c1e403da5db5459c93a3524 Mon Sep 17 00:00:00 2001 From: "Kwiatosz, Krzysztof" Date: Fri, 22 Nov 2024 14:51:21 +0100 Subject: [PATCH] fix provider version constraints --- examples/kyma-on-btp-new-sa/main.tf | 3 --- examples/kyma-on-btp-reuse-sa/main.tf | 3 --- examples/kyma-on-btp-with-custom-oidc/main.tf | 3 --- provider.tf | 3 ++- 4 files changed, 2 insertions(+), 10 deletions(-) diff --git a/examples/kyma-on-btp-new-sa/main.tf b/examples/kyma-on-btp-new-sa/main.tf index afe627f..6faf0c7 100644 --- a/examples/kyma-on-btp-new-sa/main.tf +++ b/examples/kyma-on-btp-new-sa/main.tf @@ -2,18 +2,15 @@ terraform { required_providers { btp = { source = "SAP/btp" - version = "1.8.0" } jq = { source = "massdriver-cloud/jq" } http = { source = "hashicorp/http" - version = "3.4.5" } http-full = { source = "salrashid123/http-full" - version = "1.3.1" } kubernetes = { source = "hashicorp/kubernetes" diff --git a/examples/kyma-on-btp-reuse-sa/main.tf b/examples/kyma-on-btp-reuse-sa/main.tf index 438dc51..cf75d13 100644 --- a/examples/kyma-on-btp-reuse-sa/main.tf +++ b/examples/kyma-on-btp-reuse-sa/main.tf @@ -2,18 +2,15 @@ terraform { required_providers { btp = { source = "SAP/btp" - version = "1.8.0" } jq = { source = "massdriver-cloud/jq" } http = { source = "hashicorp/http" - version = "3.4.5" } http-full = { source = "salrashid123/http-full" - version = "1.3.1" } } } diff --git a/examples/kyma-on-btp-with-custom-oidc/main.tf b/examples/kyma-on-btp-with-custom-oidc/main.tf index 8171730..845bc76 100644 --- a/examples/kyma-on-btp-with-custom-oidc/main.tf +++ b/examples/kyma-on-btp-with-custom-oidc/main.tf @@ -2,18 +2,15 @@ terraform { required_providers { btp = { source = "SAP/btp" - version = "1.8.0" } jq = { source = "massdriver-cloud/jq" } http = { source = "hashicorp/http" - version = "3.4.5" } http-full = { source = "salrashid123/http-full" - version = "1.3.1" } kubernetes = { source = "hashicorp/kubernetes" diff --git a/provider.tf b/provider.tf index 4496688..0b9b8e9 100644 --- a/provider.tf +++ b/provider.tf @@ -2,13 +2,14 @@ terraform { required_providers { btp = { source = "SAP/btp" + version = ">= 1.6.0" } jq = { source = "massdriver-cloud/jq" } http = { source = "hashicorp/http" - version = "3.4.5" + version = ">= 3.4.5" } http-full = { source = "salrashid123/http-full"