From ae05cb8eeea13efb36c7bb8412bb2b5643880ad6 Mon Sep 17 00:00:00 2001 From: Genevieve LEsperance Date: Tue, 10 Oct 2017 16:14:32 -0700 Subject: [PATCH] Pin google provider to 0.1.3 - There is a problem with 1.0+ that we see when trying to create the dns entry for the opsman instance. Related PR: https://github.com/terraform-providers/terraform-provider-google/pull/536 Signed-off-by: Dave McClure --- provider.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/provider.tf b/provider.tf index f8ea23b..2f9e784 100644 --- a/provider.tf +++ b/provider.tf @@ -1,4 +1,6 @@ provider "google" { + version = "0.1.3" + project = "${var.project}" region = "${var.region}" credentials = "${var.service_account_key}"