From d3f1edd9f0dbee2ad7ef3a0390fe2625f2cc01f5 Mon Sep 17 00:00:00 2001 From: Paddy Date: Wed, 15 Mar 2017 11:00:54 -0700 Subject: [PATCH] provider/google: drop the account file. This was already marked as removed, but the way the provider handled it, people were still being prompted for input anyways. This removes it from the provider entirely, so people won't be prompted for input. --- provider.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/provider.go b/provider.go index ced791af..7562609c 100644 --- a/provider.go +++ b/provider.go @@ -15,13 +15,6 @@ import ( func Provider() terraform.ResourceProvider { return &schema.Provider{ Schema: map[string]*schema.Schema{ - "account_file": &schema.Schema{ - Type: schema.TypeString, - Optional: true, - DefaultFunc: schema.EnvDefaultFunc("GOOGLE_ACCOUNT_FILE", nil), - Removed: "Use the credentials field instead", - }, - "credentials": &schema.Schema{ Type: schema.TypeString, Optional: true,