Version: [`v0.8.5+95f26f7`](https://github.com/coder/coder/commit/95f26f74b6ff6be1ffe42fceb21f70219889dc99) I have verified I can create a workspace fine using `coder create` but if I use the same template and attempt to create in the UI, it fails immediately. The workspace is bricked; delete does not work; I have to manually (after SSHing into the Coder host): 1. `sudo -u postgres psql` authenticate to Postgres DB 2. `\l coder` connect to coder database 3. lookup the workspace ID using the name I used e.g., `select * from workspaces where name like '%workspacename%';` 4. delete the workspace row e.g., `delete from workspaces where id='guid from above select';` 5. Refresh the UI, and the workspace is gone screenshot of failed workspace <img width="1324" alt="image" src="https://user-images.githubusercontent.com/2022166/185916616-d6ea171e-f650-4ddf-9b92-8188fc8dbb2e.png"> screenshot of successful local creation with CLI <img width="615" alt="image" src="https://user-images.githubusercontent.com/2022166/185916805-17229549-fa9c-471b-89db-4d89bc1416bd.png"> <img width="615" alt="image" src="https://user-images.githubusercontent.com/2022166/185916854-e25dce15-dff3-4e6f-b70c-af5c0fe928ae.png"> @ericpaulsen Maybe this is what you ran into. Please try in CLI, then UI.