From a07ff4bacb1ad961b2158474e67cc1f651f82ee1 Mon Sep 17 00:00:00 2001 From: Dave Cunningham Date: Tue, 3 Feb 2015 16:16:41 -0500 Subject: [PATCH] Remove service_accounts (legacy dupe of service_account) --- .../google/resource_compute_instance.go | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/builtin/providers/google/resource_compute_instance.go b/builtin/providers/google/resource_compute_instance.go index 33664f013bd9..98e9faf95c35 100644 --- a/builtin/providers/google/resource_compute_instance.go +++ b/builtin/providers/google/resource_compute_instance.go @@ -109,30 +109,6 @@ func resourceComputeInstance() *schema.Resource { }, }, - "service_accounts": &schema.Schema{ - Type: schema.TypeList, - Optional: true, - ForceNew: true, - Elem: &schema.Resource{ - Schema: map[string]*schema.Schema{ - "email": &schema.Schema{ - Type: schema.TypeString, - Required: true, - ForceNew: true, - }, - - "scopes": &schema.Schema{ - Type: schema.TypeList, - Optional: true, - ForceNew: true, - Elem: &schema.Schema{ - Type: schema.TypeString, - }, - }, - }, - }, - }, - "can_ip_forward": &schema.Schema{ Type: schema.TypeBool, Optional: true,