1
0
mirror of synced 2025-12-19 18:05:44 -05:00

update modules and examples for tf 0.13

This commit is contained in:
Rob Morgan
2020-11-12 15:19:24 +08:00
parent f10e79399c
commit 9624bdaab8
9 changed files with 39 additions and 22 deletions

View File

@@ -13,9 +13,10 @@ provider "google-beta" {
}
terraform {
# The modules used in this example have been updated with 0.12 syntax, which means the example is no longer
# compatible with any versions below 0.12.
required_version = ">= 0.12"
# This module is now only being tested with Terraform 0.13.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.
required_version = ">= 0.12.26"
}
# ------------------------------------------------------------------------------