2024-11-21 16:21:25 +00:00
|
|
|
package tfdyn
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2024-11-26 15:08:26 +00:00
|
|
|
"fmt"
|
2024-11-21 16:21:25 +00:00
|
|
|
|
|
|
|
"github.com/databricks/cli/bundle/internal/tf/schema"
|
|
|
|
"github.com/databricks/cli/libs/dyn"
|
|
|
|
"github.com/databricks/cli/libs/dyn/convert"
|
|
|
|
"github.com/databricks/cli/libs/log"
|
|
|
|
"github.com/databricks/databricks-sdk-go/service/apps"
|
|
|
|
)
|
|
|
|
|
|
|
|
func convertAppResource(ctx context.Context, vin dyn.Value) (dyn.Value, error) {
|
|
|
|
// Normalize the output value to the target schema.
|
|
|
|
vout, diags := convert.Normalize(apps.App{}, vin)
|
|
|
|
for _, diag := range diags {
|
|
|
|
log.Debugf(ctx, "app normalization diagnostic: %s", diag.Summary)
|
|
|
|
}
|
|
|
|
|
|
|
|
return vout, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type appConverter struct{}
|
|
|
|
|
|
|
|
func (appConverter) Convert(ctx context.Context, key string, vin dyn.Value, out *schema.Resources) error {
|
|
|
|
vout, err := convertAppResource(ctx, vin)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Modify top-level keys.
|
|
|
|
vout, err = renameKeys(vout, map[string]string{
|
|
|
|
"resources": "resource",
|
|
|
|
})
|
|
|
|
|
2024-11-21 16:33:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-11-21 16:21:25 +00:00
|
|
|
// Add the converted resource to the output.
|
|
|
|
out.App[key] = vout.AsAny()
|
|
|
|
|
|
|
|
// Configure permissions for this resource.
|
|
|
|
if permissions := convertPermissionsResource(ctx, vin); permissions != nil {
|
2024-11-26 15:08:26 +00:00
|
|
|
permissions.AppName = fmt.Sprintf("${databricks_app.%s.name}", key)
|
|
|
|
out.Permissions["app_"+key] = permissions
|
2024-11-21 16:21:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
registerConverter("apps", appConverter{})
|
|
|
|
}
|