Skip to content

Commit 1170168

Browse files
authored
fix: lock into exact provider versions for DA (#182)
1 parent b98679a commit 1170168

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

solutions/banking/version.tf

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,33 @@
11
terraform {
2+
# Lock DA into an exact provider version - renovate automation will keep it updated
23
required_providers {
34
ibm = {
45
source = "IBM-Cloud/ibm"
5-
version = ">= 1.69.2"
6+
version = "1.69.2"
67
}
78
null = {
89
source = "hashicorp/null"
9-
version = ">= 3.2.3"
10+
version = "3.2.3"
1011
}
1112
random = {
1213
source = "hashicorp/random"
13-
version = ">= 3.6.3"
14+
version = "3.6.3"
1415
}
1516
restapi = {
1617
source = "Mastercard/restapi"
17-
version = ">= 1.20.0"
18+
version = "1.20.0"
1819
}
1920
shell = {
2021
source = "scottwinkler/shell"
21-
version = ">= 1.7.10"
22+
version = "1.7.10"
2223
}
2324
elasticstack = {
2425
source = "elastic/elasticstack"
25-
version = ">= 0.11.7"
26+
version = "0.11.7"
2627
}
2728
kubernetes = {
2829
source = "hashicorp/kubernetes"
29-
version = ">= 2.32.0"
30+
version = "2.32.0"
3031
}
3132
}
3233
required_version = ">= 1.3.0"

0 commit comments

Comments
 (0)