From 1d7b68c3cea04285bb8597b690fca9d2e595462e Mon Sep 17 00:00:00 2001 From: DanielZhangQD Date: Fri, 27 Sep 2019 15:49:54 +0800 Subject: [PATCH] add provider version constraint for GCP and Aliyun --- deploy/aliyun/versions.tf | 7 +++++++ deploy/gcp/versions.tf | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/deploy/aliyun/versions.tf b/deploy/aliyun/versions.tf index ac97c6ac8e..0019392113 100644 --- a/deploy/aliyun/versions.tf +++ b/deploy/aliyun/versions.tf @@ -1,4 +1,11 @@ terraform { required_version = ">= 0.12" + required_providers { + alicloud = "~> 1.56" + external = "~> 1.2" + helm = "~> 0.10" + null = "~> 2.1" + template = "~> 2.1" + } } diff --git a/deploy/gcp/versions.tf b/deploy/gcp/versions.tf index ac97c6ac8e..f7999a8e96 100644 --- a/deploy/gcp/versions.tf +++ b/deploy/gcp/versions.tf @@ -1,4 +1,11 @@ terraform { required_version = ">= 0.12" + required_providers { + google = "~> 2.16" + google-beta = "~> 2.16" + external = "~> 1.2" + helm = "~> 0.10" + null = "~> 2.1" + } }