Skip to content

Commit c925b9a

Browse files
[CI] Version pin providers
This patch version pins providers and bumps the google provider to v6.43.0. We need to bump the Google provider so that we can set the windows OS version on windows node pools for the switch to server 2022. This also pins some other providers as hashicorp/helm in particular has breaking changes in v3 which terraform init -upgrade will install before this patch. Reviewers: dschuff, lnihlen, gburgessiv, Keenuts, cmtice Reviewed By: cmtice Pull Request: #497
1 parent 108fbe1 commit c925b9a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

premerge/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
google = {
44
source = "hashicorp/google"
5-
version = "6.17.0"
5+
version = "6.43.0"
66
}
77
}
88
}

premerge/premerge_resources/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ terraform {
22
required_providers {
33
kubernetes = {
44
source = "hashicorp/kubernetes"
5-
version = ">= 2.35.1"
5+
version = "2.35.1"
66
}
77
helm = {
88
source = "hashicorp/helm"
9-
version = ">= 2.17.0"
9+
version = "2.17.0"
1010
}
1111
}
1212
}

0 commit comments

Comments
 (0)