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

63 lines
1.1 KiB
Go
Raw Normal View History

2022-12-15 14:12:47 +00:00
package terraform
import (
"context"
"fmt"
2022-12-15 14:12:47 +00:00
"github.com/databricks/cli/bundle"
"github.com/hashicorp/terraform-exec/tfexec"
tfjson "github.com/hashicorp/terraform-json"
2022-12-15 14:12:47 +00:00
)
type load struct{}
func (l *load) Name() string {
return "terraform.Load"
}
func (l *load) Apply(ctx context.Context, b *bundle.Bundle) error {
tf := b.Terraform
if tf == nil {
return fmt.Errorf("terraform not initialized")
}
err := tf.Init(ctx, tfexec.Upgrade(true))
if err != nil {
return fmt.Errorf("terraform init: %w", err)
}
2022-12-15 14:12:47 +00:00
state, err := b.Terraform.Show(ctx)
if err != nil {
return err
2022-12-15 14:12:47 +00:00
}
err = ValidateState(state)
if err != nil {
return err
}
2022-12-15 14:12:47 +00:00
// Merge state into configuration.
err = TerraformToBundle(state, &b.Config)
if err != nil {
return err
2022-12-15 14:12:47 +00:00
}
return nil
2022-12-15 14:12:47 +00:00
}
func ValidateState(state *tfjson.State) error {
if state.Values == nil {
return fmt.Errorf("no deployment state. Did you forget to run 'databricks bundle deploy'?")
}
if state.Values.RootModule == nil {
return fmt.Errorf("malformed terraform state: RootModule not set")
}
return nil
}
2022-12-15 14:12:47 +00:00
func Load() bundle.Mutator {
return &load{}
}