Skip to content

Commit

Permalink
Merge pull request #10 from mineiros-io/fix/support-for-google-v5
Browse files Browse the repository at this point in the history
fix: add support for google v5 provider
  • Loading branch information
zied-elouaer authored Mar 19, 2024
2 parents 47d0280 + dca4e30 commit c8438f5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/terramate_google.tm.hcl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
globals {
minimum_provider_version = "4.0"
minimum_provider_version = "5.0"
provider_version_constraint = "~> ${global.minimum_provider_version}"

stack_basename = tm_reverse(tm_split("/", terramate.path))[0]
Expand Down
2 changes: 1 addition & 1 deletion test/unit-complete/_generated_google.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
version = "~> 5.0"
}
random = {
source = "hashicorp/random"
Expand Down
2 changes: 1 addition & 1 deletion test/unit-disabled/_generated_google.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "4.0"
version = "5.0"
}
random = {
source = "hashicorp/random"
Expand Down
4 changes: 4 additions & 0 deletions test/unit-minimal/config.tm.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
globals {
minimum_provider_version = "4.0"
provider_version_constraint = "~> ${global.minimum_provider_version}"
}
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 4.0, < 5.0"
version = ">= 4.0, <6"
}
}
}

0 comments on commit c8438f5

Please sign in to comment.