terraform { required_providers { coder = { source = "coder/coder" } local = { source = "hashicorp/local" } } } data "coder_workspace" "me" {} resource "coder_agent" "dev" { os = "linux" arch = "amd64" dir = "/workspace" } resource "coder_app" "tab" { agent_id = coder_agent.dev.id slug = "tab" share = "owner" open_in = "tab" } resource "coder_app" "defaulted" { agent_id = coder_agent.dev.id slug = "defaulted" share = "owner" } locals { # NOTE: these must all be strings in the output output = { "coder_app.tab.open_in" = tostring(coder_app.tab.open_in) "coder_app.defaulted.open_in" = tostring(coder_app.defaulted.open_in) } } variable "output_path" { type = string } resource "local_file" "output" { filename = var.output_path content = jsonencode(local.output) } output "output" { value = local.output sensitive = true }