Skip to content

Commit

Permalink
fix: auth module avoid TPG v4.50.0 (#1541)
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody committed Jan 24, 2023
1 parent 6253812 commit c3e08ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/auth/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ terraform {
google = {
source = "hashicorp/google"
# Avoid v4.49.0 for https://github.com/hashicorp/terraform-provider-google/issues/13507
version = ">= 4.47.0, != 4.49.0, < 5.0"
version = ">= 4.47.0, != 4.49.0, != 4.50.0, < 5.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/safer_cluster_iap_bastion/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ terraform {
google = {
source = "hashicorp/google"
# Avoid v4.49.0 for https://github.com/hashicorp/terraform-provider-google/issues/13507
version = "!= 4.49.0"
version = "!= 4.49.0, != 4.50.0"
}
}
}

0 comments on commit c3e08ea

Please sign in to comment.