Skip to content

Commit 682f1bc

Browse files
authored
fix: avoid TPG v4.49.0
Fixes #1533
1 parent 912da8c commit 682f1bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

versions.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ terraform {
2121
required_providers {
2222
google = {
2323
source = "hashicorp/google"
24-
version = ">= 4.47.0, < 5.0"
24+
# Avoid v4.49.0 for https://github.com/hashicorp/terraform-provider-google/issues/13507
25+
version = ">= 4.47.0, != 4.49.0, < 5.0"
2526
}
2627
kubernetes = {
2728
source = "hashicorp/kubernetes"

0 commit comments

Comments
 (0)