Configure machines with the CLI

Create and configure machines, add and remove components and services, and apply configuration fragments from the command line.

Prerequisites
You need the Viam CLI installed and authenticated. See Viam CLI overview for installation and authentication instructions.

Find your IDs

Many commands on this page require an organization ID, location ID, machine ID, or part ID.

A machine can have one or more parts, each running a separate instance of viam-server. Most machines have a single part. Multi-part machines are used when one logical machine runs across multiple computers. Every machine has at least one part (the main part), which is created automatically when you create the machine. When you add resources, apply fragments, or restart, you target a specific part.

Find your organization ID and location ID:

viam organizations list
viam locations list

Find machine IDs and part IDs. The machines list command prints each machine’s ID and its main part ID. Use machines part list to see all parts for a machine:

viam machines list --organization=<org-id> --location=<location-id>
viam machines part list --machine=<machine-id>

Create a machine

viam machines create --name=my-machine --location=<location-id>

This creates the machine in the Viam app. The machine is not connected to any hardware until you install viam-server on a device and configure it with this machine’s credentials.

On success, the CLI prints the new machine’s ID:

created new machine with id abc12345-1234-abcd-5678-ef1234567890

Save this ID for subsequent commands.

List machines

List all machines in a location:

viam machines list --organization=<org-id> --location=<location-id>

List all machines across your entire organization:

viam machines list --organization=<org-id> --all

Add a component or service

Add a resource to a machine part by specifying its model and the resource subtype it implements. For built-in resources (such as a webcam camera or GPIO motor), pass the subtype with --resource-subtype:

viam machines part add-resource \
  --part=<part-id> \
  --name=my-camera \
  --model-name=webcam \
  --resource-subtype=camera

For resources from a registry module, pass the model triplet with --model-name and use the same --resource-subtype:

viam machines part add-resource \
  --part=<part-id> \
  --name=my-board \
  --model-name=viam:raspberry-pi:rpi5 \
  --resource-subtype=board

The --resource-subtype value is the third segment of the model’s API. The webcam camera’s API is rdk:component:camera, so the subtype is camera. The vision service’s API is rdk:service:vision, so the subtype is vision. See Components and Services for all standard subtypes.

Use --api instead of --resource-subtype only for a custom resource API. Pass the full triplet, for example --api=acme:component:gizmo. Most third-party modules implement a standard subtype or use generic component or generic service, both of which take --resource-subtype.

This creates a bare resource entry with no additional attributes. Most components need attributes like pin numbers or device paths to function. See Update resource attributes to set them from the CLI, or configure them in the Viam app.

Model names take one of two forms:

  • Built-in models ship with viam-server and use a single name (such as webcam, gpio, fake). Internally they expand to rdk:builtin:<name>.
  • Module models come from the registry and use a three-part triplet <namespace>:<module>:<model> (such as viam:raspberry-pi:rpi5). Browse available models in the Viam registry.

Common model names:

ComponentModelSubtype
Webcam camerawebcamcamera
GPIO motorgpiomotor
Fake arm (testing)fakearm
Fake motor (testing)fakemotor
Raspberry Pi 5 boardviam:raspberry-pi:rpi5board
Ultrasonic sensorviam:ultrasonic:sensorsensor

Remove a component or service

viam machines part remove-resource \
  --part=<part-id> \
  --name=my-camera

Connected machines pick up configuration changes automatically. You do not need to restart the machine after adding or removing a resource.

Manage resources

Update resource attributes

After adding a resource, use viam resource update to set its attributes. The --config flag accepts inline JSON or a path to a JSON file:

viam resource update --part=<part-id> \
  --resource-name=my-sensor --config '{"pin": "38"}'

To load attributes from a file:

viam resource update --part=<part-id> \
  --resource-name=my-sensor --config ./sensor-config.json

Enable and disable resources

Disable a resource to stop it without removing it from the configuration. This is useful for temporarily taking a component offline or debugging issues with a specific resource.

viam resource disable --part=<part-id> --resource-name=my-sensor

Re-enable it:

viam resource enable --part=<part-id> --resource-name=my-sensor

You can enable or disable multiple resources in a single command:

viam resource disable --part=<part-id> \
  --resource-name=my-sensor --resource-name=arm-1

Apply a fragment

Fragments are reusable configuration blocks that can define a set of components, services, and their attributes. Apply the same fragment across multiple machines to keep their configuration consistent. Add a fragment to a machine part by specifying its name or ID:

viam machines part fragments add --part=<part-id> --fragment=<fragment-name-or-id>

If you omit the --fragment flag, the CLI prompts you to select a fragment interactively.

Remove a fragment:

viam machines part fragments remove --part=<part-id> --fragment=<fragment-name-or-id>

See Reuse machine configuration for details on creating and managing fragments.

Rename or move a machine

viam machines update \
  --machine=<machine-id> \
  --new-name=updated-name \
  --new-location=<new-location-id>

Moving a machine to a different location may affect access if your API keys or permissions are scoped to a specific location.

Delete a machine

viam machines delete --machine=<machine-id>

Restart a machine part

viam machines part restart --part=<part-id>

Add or delete a part

Most machines have only a main part, which is created when you create the machine. For multi-part machines, add additional parts to an existing machine:

viam machines part create --machine=<machine-id> --part-name=<new-part-name>

Delete a part from a machine:

viam machines part delete --part=<part-id>

Related pages