2022-12-09 07:57:30 +00:00
|
|
|
package terraform
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
2023-05-16 16:35:39 +00:00
|
|
|
"github.com/databricks/cli/bundle"
|
|
|
|
"github.com/databricks/cli/libs/cmdio"
|
2023-12-21 08:00:37 +00:00
|
|
|
"github.com/databricks/cli/libs/log"
|
2022-12-09 07:57:30 +00:00
|
|
|
"github.com/hashicorp/terraform-exec/tfexec"
|
|
|
|
)
|
|
|
|
|
|
|
|
type apply struct{}
|
|
|
|
|
|
|
|
func (w *apply) Name() string {
|
|
|
|
return "terraform.Apply"
|
|
|
|
}
|
|
|
|
|
2023-05-24 12:45:19 +00:00
|
|
|
func (w *apply) Apply(ctx context.Context, b *bundle.Bundle) error {
|
2022-12-15 16:30:33 +00:00
|
|
|
tf := b.Terraform
|
|
|
|
if tf == nil {
|
2023-05-24 12:45:19 +00:00
|
|
|
return fmt.Errorf("terraform not initialized")
|
2022-12-09 07:57:30 +00:00
|
|
|
}
|
|
|
|
|
2023-12-21 08:00:37 +00:00
|
|
|
cmdio.LogString(ctx, "Deploying resources...")
|
2023-04-18 14:55:06 +00:00
|
|
|
|
2022-12-15 16:30:33 +00:00
|
|
|
err := tf.Init(ctx, tfexec.Upgrade(true))
|
2022-12-09 07:57:30 +00:00
|
|
|
if err != nil {
|
2023-05-24 12:45:19 +00:00
|
|
|
return fmt.Errorf("terraform init: %w", err)
|
2022-12-09 07:57:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err = tf.Apply(ctx)
|
|
|
|
if err != nil {
|
2023-05-24 12:45:19 +00:00
|
|
|
return fmt.Errorf("terraform apply: %w", err)
|
2022-12-09 07:57:30 +00:00
|
|
|
}
|
|
|
|
|
2023-12-21 08:00:37 +00:00
|
|
|
log.Infof(ctx, "Resource deployment completed")
|
2023-05-24 12:45:19 +00:00
|
|
|
return nil
|
2022-12-09 07:57:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Apply returns a [bundle.Mutator] that runs the equivalent of `terraform apply`
|
|
|
|
// from the bundle's ephemeral working directory for Terraform.
|
|
|
|
func Apply() bundle.Mutator {
|
|
|
|
return &apply{}
|
|
|
|
}
|