Skip to content

Commit

Permalink
Update versions.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
bgdanix authored Nov 19, 2020
1 parent 3b9f42c commit c7a04c7
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions terraform/modules/moduleone/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,16 @@
*/

terraform {
required_version = ">= 0.12.6"
required_version = ">= 0.13.0"

required_providers {
google = ">= 3.32, <4.0.0"
google-beta = ">= 3.32, <4.0.0"
google = {
source = "hashicorp/google"
version = "~> 3.34.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 3.34.0"
}
}
}

0 comments on commit c7a04c7

Please sign in to comment.