# PROVISION_FAILED

**What it means.** The platform could not create a resource this app needs.

**What to do.** Re-run deploy. If it fails again with the same code, nothing in the project is wrong; report the deployment_id.

- HTTP status: 422
- Retryable after applying the fix: yes

Every failure from the CLI or an MCP tool has this shape:

```json
{
  "ok": false,
  "code": "PROVISION_FAILED",
  "message": "The platform could not create a resource this app needs.",
  "fix": "Re-run deploy. If it fails again with the same code, nothing in the project is wrong; report the deployment_id.",
  "file": "<where to edit, when known>",
  "retryable": true,
  "docs": "https://docs.uarpie.app/errors/PROVISION_FAILED"
}
```

Apply `fix` (edit `file` when it is given), then run the same command again.
