Skip to content

Commit

Permalink
fix: restrict provider version to "<5.0" for modules missing max vers…
Browse files Browse the repository at this point in the history
…ion (#501)
  • Loading branch information
imrannayer authored Oct 2, 2023
1 parent 7fdd9ab commit 22736f5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/private-service-connect/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 3.50"
version = ">= 3.50, < 5.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 3.50"
version = ">= 3.50, < 5.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion modules/routes-beta/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ terraform {
required_providers {
google-beta = {
source = "hashicorp/google-beta"
version = ">= 3.0"
version = ">= 3.0, < 5.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion modules/vpc-serverless-connector-beta/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ terraform {
required_providers {
google-beta = {
source = "hashicorp/google-beta"
version = ">= 3.62"
version = ">= 3.62, < 5.0"
}
}

Expand Down

0 comments on commit 22736f5

Please sign in to comment.