fix modules version constraints (#206)

This commit is contained in:
Ludovico Magnocavallo 2021-03-05 08:41:59 +01:00 committed by GitHub
parent d1865471b4
commit 86b88e0634
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 10 deletions

View File

@ -12,8 +12,8 @@ You should create a `backend.tf` file with the following configuration:
``` terraform
terraform {
required_providers {
google = "~> 3.51.0"
google-beta = "~> 3.51.0"
google = ">= 3.51.0"
google-beta = ">= 3.51.0"
}
backend "gcs" {
@ -30,4 +30,4 @@ This file will create 2 VM instances and corresponding DNS records so you can ea
# Clean Up
Run `terraform destroy` to clean up all resources created by this terraform code.
Run `terraform destroy` to clean up all resources created by this terraform code.

View File

@ -17,6 +17,6 @@
terraform {
required_version = ">= 0.13.0"
required_providers {
google = "~> 3.49"
google = ">= 3.49"
}
}

View File

@ -17,7 +17,7 @@
terraform {
required_version = ">= 0.13.0"
required_providers {
google = "~> 3.10"
google-beta = "~> 3.20"
google = ">= 3.10"
google-beta = ">= 3.20"
}
}

View File

@ -17,6 +17,6 @@
terraform {
required_version = ">= 0.13.0"
required_providers {
google = "~> 3.57"
google = ">= 3.57"
}
}

View File

@ -17,6 +17,6 @@
terraform {
required_version = ">= 0.12.6"
required_providers {
google = "~> 3.57"
google = ">= 3.57"
}
}

View File

@ -17,7 +17,7 @@
terraform {
required_version = ">= 0.13.0"
required_providers {
google = "~> 3.57"
google-beta = "~> 3.57"
google = ">= 3.57"
google-beta = ">= 3.57"
}
}