omnistrate-ctl instance modify
Modify an instance deployment for your service
Synopsis
This command helps you modify the instance for your service.
omnistrate-ctl instance modify [instance-id] [flags]
Examples
```
Modify an instance deployment
omnistrate-ctl instance modify instance-abcd1234 --network-type PUBLIC / INTERNAL --param '{"databaseName":"default","password":"a_secure_password","rootPassword":"a_secure_root_password","username":"user"}'
Modify an instance deployment using a parameter file
omnistrate-ctl instance modify instance-abcd1234 --param-file /path/to/param.json
Modify instance tags
omnistrate-ctl instance modify instance-abcd1234 --tags environment=prod,owner=team
Modify an instance deployment and wait for completion with progress tracking
omnistrate-ctl instance modify instance-abcd1234 --param-file /path/to/param.json --wait ```
Options
-h, --help help for modify --network-type string Optional network type change for the instance deployment (PUBLIC / INTERNAL) --param string Parameters for the instance deployment --param-file string Json file containing parameters for the instance deployment --tags string Custom tags to set on the instance deployment (format: key=value,key2=value2) --wait Wait for modification to complete and show progress
Options inherited from parent commands
-o, --output string Output format (text|table|json) (default "table") -v, --version Print the version number of omnistrate-ctl
SEE ALSO
- omnistrate-ctl instance - Manage Instance Deployments for your service