Skip to content

SSH Keys & Startup Scripts

The Verda CLI lets you manage SSH keys and startup scripts used during instance creation.


SSH Keys

SSH keys are used to authenticate when connecting to your instances.

List SSH keys

verda ssh-key list

Add an SSH key

verda ssh-key add

The CLI prompts you for a name and the public key content.

Delete an SSH key

verda ssh-key delete <key-id>

Startup Scripts

Startup scripts run automatically when an instance boots for the first time. Common uses include installing packages, pulling repositories, and configuring services.

List startup scripts

verda startup-script list

Add a startup script

verda startup-script add

The CLI prompts you for a name and the script content.

Delete a startup script

verda startup-script delete <script-id>