Skip to content

Commit

Permalink
fix provider version constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
kwiatekus committed Nov 22, 2024
1 parent 2168d61 commit 9db1dd5
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 10 deletions.
3 changes: 0 additions & 3 deletions examples/kyma-on-btp-new-sa/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 0 additions & 3 deletions examples/kyma-on-btp-reuse-sa/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
Expand Down
3 changes: 0 additions & 3 deletions examples/kyma-on-btp-with-custom-oidc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 9db1dd5

Please sign in to comment.