From 10154b563c62db19aa79ea3aea506de8e9343a50 Mon Sep 17 00:00:00 2001 From: Phil Hachey Date: Fri, 9 May 2025 14:54:43 +0000 Subject: [PATCH] fix(cursor): added new variables to cursor module * Added `slug` variable to cursor module * Added `display_name` variable to cursor module --- registry/coder/modules/cursor/main.tf | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/registry/coder/modules/cursor/main.tf b/registry/coder/modules/cursor/main.tf index f350f94..89b320f 100644 --- a/registry/coder/modules/cursor/main.tf +++ b/registry/coder/modules/cursor/main.tf @@ -32,6 +32,18 @@ variable "order" { default = null } +variable "slug" { + type = string + description = "The slug of the app." + default = "cursor" +} + +variable "display_name" { + type = string + description = "The display name of the app." + default = "Cursor Desktop" +} + data "coder_workspace" "me" {} data "coder_workspace_owner" "me" {} @@ -39,8 +51,8 @@ resource "coder_app" "cursor" { agent_id = var.agent_id external = true icon = "/icon/cursor.svg" - slug = "cursor" - display_name = "Cursor Desktop" + slug = var.slug + display_name = var.display_name order = var.order url = join("", [ "cursor://coder.coder-remote/open",