Skip to content

Commit

Permalink
fix: updated minimum version constraint (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
prabhu34 authored May 12, 2024
1 parent 7d843ed commit f204125
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ These sections describe requirements for using this module.
The following dependencies must be available:

- [Terraform][terraform] v0.13+
- [Terraform Provider for GCP][terraform-provider-gcp] plugin v3.0+
- [Terraform Provider for GCP][terraform-provider-gcp] plugin v5.0+

### Service Account

Expand Down
4 changes: 2 additions & 2 deletions examples/gar_docker_repo/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 3.25.0"
version = ">= 5.0, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 3.25.0"
version = ">= 5.0, < 6"
}
}
required_version = ">= 0.13"
Expand Down
4 changes: 2 additions & 2 deletions 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.53, < 6"
version = ">= 5.0, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 3.53, < 6"
version = ">= 5.0, < 6"
}
}

Expand Down

0 comments on commit f204125

Please sign in to comment.