- Custom fields
- Incident severities
- Incident roles
- Incident statuses
- Schedules
- Escalation paths
- Alert sources
- Alert routes
- Catalog types and entries
- Maintenance windows
Whether a field is required and where it appears is no longer configured on the field itself — set that up in
incident forms in the dashboard.

Importing existing resources
If you already have configuration set up in the dashboard, you can bring it under Terraform management without recreating it. For workflows, schedules, escalation paths, alert sources, and alert routes, the easiest path is exporting from the dashboard (see below), which generates the resource block and the matchingterraform import command for you. For everything else, or if you prefer to write the configuration yourself:
- Write a resource block matching your existing configuration
- Find the resource’s ID, from the dashboard URL or the API
- Import it into your Terraform state:
- Run
terraform planand adjust your configuration until the plan shows no changes
Editing Terraform-managed resources in the UI
Once a resource is managed by Terraform, it becomes locked in the dashboard — you can’t save changes directly. But you can still use the UI to compose changes visually:- Open the resource (e.g. a schedule or escalation path) in the dashboard
- Make your changes in the visual editor
- Instead of saving, click Export to get the updated
.tfconfiguration - Review and apply via your normal Terraform workflow