backend/remote-state/gcloud: Move the definition of the Backend struct.

This commit is contained in:
Florian Forster 2017-09-07 10:08:39 +02:00 committed by James Bardin
parent def3279ec7
commit 5313e15e07
1 changed files with 10 additions and 10 deletions

View File

@ -13,6 +13,16 @@ import (
"google.golang.org/api/option"
)
type Backend struct {
*schema.Backend
storageClient *storage.Client
storageContext googleContext.Context
bucketName string
stateDir string
}
func New() backend.Backend {
s := &schema.Backend{
Schema: map[string]*schema.Schema{
@ -42,16 +52,6 @@ func New() backend.Backend {
return result
}
type Backend struct {
*schema.Backend
storageClient *storage.Client
storageContext googleContext.Context
bucketName string
stateDir string
}
func (b *Backend) configure(ctx context.Context) error {
if b.storageClient != nil {
return nil