Skip to content

Commit 09d3d06

Browse files
committed
fix: avoid TPG v4.49.0
Fixes #1533
1 parent 912da8c commit 09d3d06

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

modules/auth/versions.tf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@
1717

1818
terraform {
1919
required_version = ">= 0.13.0"
20+
required_providers {
21+
google = {
22+
source = "hashicorp/google"
23+
# Avoid v4.49.0 for https://github.com/hashicorp/terraform-provider-google/issues/13507
24+
version = ">= 4.47.0, != 4.49.0, < 5.0"
25+
}
26+
}
2027

2128
provider_meta "google" {
2229
module_name = "blueprints/terraform/terraform-google-kubernetes-engine:auth/v24.1.0"

0 commit comments

Comments
 (0)