File tree Expand file tree Collapse file tree 3 files changed +11
-15
lines changed
bundle-deployment-migrate Expand file tree Collapse file tree 3 files changed +11
-15
lines changed Original file line number Diff line number Diff line change 11
22>>> [CLI] bundle deployment migrate --help
3- Migrate bundle resources from Terraform deployment to Direct deployment.
4-
53This command converts your bundle from using Terraform for deployment to using
64the Direct deployment engine. It reads resource IDs from the existing Terraform
75state and creates a Direct deployment state file (resources.json) with the same
86lineage and incremented serial number.
97
10- WIP:
11- TODO:
12- - permissions support
13- - lock & update state remotely .
8+ Note, the migration is performed locally only. To finalize it, run 'bundle deploy'. This will synchronize the state file
9+ to the workspace so that subsequent deploys of this bundle use direct deployment engine as well.
10+
11+ WARNING: Both direct deployment engine and this command are experimental and not recommended for production targets yet .
1412
1513Usage:
1614 databricks bundle deployment migrate [flags]
Original file line number Diff line number Diff line change 2121
2222Available Commands:
2323 bind Bind bundle-defined resources to existing resources
24- migrate Migrate from Terraform to Direct deployment
24+ migrate Migrate from Terraform to Direct deployment engine
2525 unbind Unbind bundle-defined resources from its managed remote resource
2626
2727Flags:
Original file line number Diff line number Diff line change @@ -17,18 +17,16 @@ import (
1717func newMigrateCommand () * cobra.Command {
1818 cmd := & cobra.Command {
1919 Use : "migrate" ,
20- Short : "Migrate from Terraform to Direct deployment" ,
21- Long : `Migrate bundle resources from Terraform deployment to Direct deployment.
22-
23- This command converts your bundle from using Terraform for deployment to using
20+ Short : "Migrate from Terraform to Direct deployment engine" ,
21+ Long : `This command converts your bundle from using Terraform for deployment to using
2422the Direct deployment engine. It reads resource IDs from the existing Terraform
2523state and creates a Direct deployment state file (resources.json) with the same
2624lineage and incremented serial number.
2725
28- WIP:
29- TODO:
30- - permissions support
31- - lock & update state remotely .
26+ Note, the migration is performed locally only. To finalize it, run 'bundle deploy'. This will synchronize the state file
27+ to the workspace so that subsequent deploys of this bundle use direct deployment engine as well.
28+
29+ WARNING: Both direct deployment engine and this command are experimental and not recommended for production targets yet .
3230` ,
3331 Args : root .NoArgs ,
3432 }
You can’t perform that action at this time.
0 commit comments