1
0
mirror of synced 2025-12-23 21:04:40 -05:00

Terraform v0.14 update (#60)

This commit is contained in:
Rob Morgan
2021-04-22 08:10:13 +08:00
committed by GitHub
parent ad56d7b782
commit 7a02a34de8
18 changed files with 98 additions and 85 deletions

12
main.tf
View File

@@ -7,16 +7,22 @@
# ------------------------------------------------------------------------------
provider "google-beta" {
version = "~> 3.57.0"
project = var.project
region = var.region
}
terraform {
# This module is now only being tested with Terraform 0.13.x. However, to make upgrading easier, we are setting
# This module is now only being tested with Terraform 0.14.x. However, to make upgrading easier, we are setting
# 0.12.26 as the minimum version, as that version added support for required_providers with source URLs, making it
# forwards compatible with 0.13.x code.
# forwards compatible with 0.14.x code.
required_version = ">= 0.12.26"
required_providers {
google-beta = {
source = "hashicorp/google-beta"
version = "~> 3.57.0"
}
}
}
# ------------------------------------------------------------------------------