Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgraded versions.tf to include minor bumps from tpg v5 #68

Merged
merged 13 commits into from
Oct 27, 2023
6 changes: 2 additions & 4 deletions examples/dns_response_policy/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ terraform {
required_version = ">= 1.3.0"
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
source = "hashicorp/google-beta"
}
}
}
6 changes: 2 additions & 4 deletions examples/forwarding-zone/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ terraform {
required_version = ">= 0.13"
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
source = "hashicorp/google-beta"
}
}
}
6 changes: 2 additions & 4 deletions examples/peering-zone/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ terraform {
required_version = ">= 0.13"
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
source = "hashicorp/google-beta"
}
}
}
6 changes: 2 additions & 4 deletions examples/private-zone/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
source = "hashicorp/google-beta"
}
}
required_version = ">= 0.13"
Expand Down
6 changes: 2 additions & 4 deletions examples/public-zone/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
source = "hashicorp/google-beta"
}
}
required_version = ">= 0.13"
Expand Down
4 changes: 2 additions & 2 deletions modules/dns_response_policy/version.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 = ">= 4.75, < 5.0"
version = ">= 4.75, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 4.75, < 5.0"
version = ">= 4.75, < 6"
}
}

Expand Down
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ terraform {

google = {
source = "hashicorp/google"
version = ">= 4.40, < 5.0"
version = ">= 4.40, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 4.40, < 5.0"
version = ">= 4.40, < 6"
}
}

Expand Down
Loading