Closed
Description
Problem statement
The resources list on the azure VM is quite bulky and has resources that are not super relevant to the developer. It'd be great to hide specific resources from the dashboard view.
Definition of done
An admin can specify specific resources to hide from the workspace view
Idea: use coder_metadata
resource "coder_metadata" "hide-subnet" {
count = data.coder_workspace.me.start_count
resource_id = azurerm_subnet.internal.id
+ hide = true
- item {
- key = "currently one key value pair is required"
- value = "for coder_medata"
- }
}