Skip to content

Templates

Templates let you save and reuse instance configurations. Instead of specifying all flags every time, save a configuration as a template and create instances from it.


Create a template

verda template create

The CLI guides you through selecting an instance type, image, SSH keys, and other settings.

List templates

verda template list

Show template details

verda template show <template-name>

Edit a template

verda template edit <template-name>

Delete a template

verda template delete <template-name>

Create an instance from a template

verda vm create --from <template-name>

Info

Templates are stored locally in ~/.verda/templates/. They are not synced to the Verda API.


Command aliases

The template command also accepts tmpl as an alias:

verda tmpl list          # same as verda template list
verda tmpl show ...      # same as verda template show ...