Skip to content

profile

Manage saved configuration profiles

Authentication scope: local

Save a named profile with default settings

Terminal window
fabio profile save --name <value>
Flag Type Required Description
--name string Yes Profile name
--workspace string No Default workspace ID
--capacity string No Default capacity ID
--default-output string No Default output format for this profile
--private-link-workspace string No Workspace ID for private link URL routing

Examples

Terminal window
fabio profile save --name dev --workspace $DEV_WS --default-output table
Terminal window
fabio profile save --name prod --workspace $PROD_WS --capacity $PROD_CAP --default-output json
Terminal window
fabio profile save --name private --workspace $WS --private-link-workspace $PRIVATE_WS_ID

Mutates state · Returns object

Set the active profile

Terminal window
fabio profile use --name <value>
Flag Type Required Description
--name string Yes Profile name to activate

Examples

Terminal window
fabio profile use --name dev

Mutates state · Returns object

List all saved profiles

Terminal window
fabio profile list

Examples

Terminal window
fabio profile list -o table

Read-only · Returns list

Show details of a profile

Terminal window
fabio profile show --name <value>
Flag Type Required Description
--name string Yes Profile name

Examples

Terminal window
fabio profile show --name dev

Read-only · Returns object

Delete a profile

Terminal window
fabio profile delete --name <value>
Flag Type Required Description
--name string Yes Profile name

Examples

Terminal window
fabio profile delete --name old-env

Mutates state · Destructive · Returns void