provider/google: gofmt
This commit is contained in:
parent
b26a85e5b2
commit
a1676f9eb1
|
@ -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
|
||||
|
|
|
@ -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,14 +52,13 @@ func resourcePubsubSubscription() *schema.Resource {
|
|||
Required: true,
|
||||
ForceNew: true,
|
||||
},
|
||||
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
func cleanAdditionalArgs(args map[string]interface{}) map[string]string {
|
||||
cleaned_args := make(map[string]string)
|
||||
for k,v := range args {
|
||||
for k, v := range args {
|
||||
cleaned_args[k] = v.(string)
|
||||
}
|
||||
return cleaned_args
|
||||
|
@ -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)
|
||||
|
||||
|
|
|
@ -71,4 +71,3 @@ resource "google_pubsub_subscription" "foobar_sub" {
|
|||
name = "foobar_sub"
|
||||
topic = "${google_pubsub_topic.foobar_sub.name}"
|
||||
}`
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue