Spike Curtis
Spike Curtis
@tjcran @kylecarbs I feel like I'm seeing a pattern of bugs related to orphaned resources in the cloud provider. It's pretty concerning because it can cause wasted cloud spend. Our...
I'd want to start with some strategic discussion & brainstorming, maybe @ketang @kylecarbs @spikecurtis @tjcran (optionally @ammario, optionally other engineers with deep distributed systems experience). One outcome of that discussion...
My _personal_ feeling is that this trumps several things on the August list, like activity based auto-off.
Those are improvements, but I worry that we're missing an "affordance" --- if my goal is to disable autostart, it's not clear looking at the screen that I should take...
@bpmct @tjcran one annoying thing about Azure linux VMs is that they _require_ either an admin password or an SSH public key. In normal use, the Coder user will never...
We could use Azure Key Vault to store a password (but not an SSH key because there would be no way to extract the private key and enable login)
The problem with dummy keys or passwords is that they are not accessible if they _are_ needed.
We just talked about this at office hours, and Resource Metadata sounds like a great way forward. We'll ask Terraform to generate the key resource, and then return the private...
Turns out Azure has the ability to copy a new key onto the VM if needed. So, I'll just generate something and not return it. But, good to know for...
Examining the terraform state, it looks like we need to grab `virtual_machine_id` from the state, rather than `id`