From 97b40a2005b8a666d55c25f1187399c05bd515a7 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. --- builtin/providers/google/provider.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/builtin/providers/google/provider.go b/builtin/providers/google/provider.go index ced791afd..7562609c3 100644 --- a/builtin/providers/google/provider.go +++ b/builtin/providers/google/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,