Skip to content

Commit

Permalink
fix: example provider constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsorbo committed Aug 27, 2024
1 parent a7be8c3 commit ca1a1dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/gh-org-runner-mig-native-simple/providers.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 = "~> 4.0"
version = ">= 4.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
version = ">= 4.0"
}
}
required_version = ">= 0.13"
Expand Down

0 comments on commit ca1a1dd

Please sign in to comment.