provider/google: gofmt

This commit is contained in:
Lars Wander 2015-12-11 12:59:13 -05:00
parent 9fbfce3add
commit 8e4cd40c65
5 changed files with 17 additions and 22 deletions

View File

@ -16,9 +16,9 @@ import (
"google.golang.org/api/compute/v1"
"google.golang.org/api/container/v1"
"google.golang.org/api/dns/v1"
"google.golang.org/api/pubsub/v1"
"google.golang.org/api/sqladmin/v1beta4"
"google.golang.org/api/storage/v1"
"google.golang.org/api/pubsub/v1"
)
// Config is the configuration structure used to instantiate the Google

View File

@ -2,8 +2,8 @@ package google
import (
"fmt"
"google.golang.org/api/pubsub/v1"
"github.com/hashicorp/terraform/helper/schema"
"google.golang.org/api/pubsub/v1"
)
func resourcePubsubSubscription() *schema.Resource {
@ -52,7 +52,6 @@ func resourcePubsubSubscription() *schema.Resource {
Required: true,
ForceNew: true,
},
},
}
}
@ -119,7 +118,6 @@ func resourcePubsubSubscriptionRead(d *schema.ResourceData, meta interface{}) er
return nil
}
func resourcePubsubSubscriptionDelete(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)

View File

@ -71,4 +71,3 @@ resource "google_pubsub_subscription" "foobar_sub" {
name = "foobar_sub"
topic = "${google_pubsub_topic.foobar_sub.name}"
}`

View File

@ -2,8 +2,8 @@ package google
import (
"fmt"
"google.golang.org/api/pubsub/v1"
"github.com/hashicorp/terraform/helper/schema"
"google.golang.org/api/pubsub/v1"
)
func resourcePubsubTopic() *schema.Resource {
@ -18,7 +18,6 @@ func resourcePubsubTopic() *schema.Resource {
Required: true,
ForceNew: true,
},
},
}
}
@ -53,7 +52,6 @@ func resourcePubsubTopicRead(d *schema.ResourceData, meta interface{}) error {
return nil
}
func resourcePubsubTopicDelete(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)