databricks-cli/bundle/deploy/terraform/state_push.go

52 lines
999 B
Go

package terraform
import (
"context"
"os"
"path/filepath"
"github.com/databricks/cli/bundle"
"github.com/databricks/cli/libs/filer"
"github.com/databricks/cli/libs/log"
)
type statePush struct {
filerFunc
}
func (l *statePush) Name() string {
return "terraform:state-push"
}
func (l *statePush) Apply(ctx context.Context, b *bundle.Bundle) error {
f, err := l.filerFunc(b)
if err != nil {
return err
}
dir, err := Dir(ctx, b)
if err != nil {
return err
}
// Expect the state file to live under dir.
local, err := os.Open(filepath.Join(dir, TerraformStateFileName))
if err != nil {
return err
}
defer local.Close()
// Upload state file from local cache directory to filer.
log.Infof(ctx, "Writing local state file to remote state directory")
err = f.Write(ctx, TerraformStateFileName, local, filer.CreateParentDirectories, filer.OverwriteIfExists)
if err != nil {
return err
}
return nil
}
func StatePush() bundle.Mutator {
return &statePush{stateFiler}
}