diff --git a/registry/coder/modules/cursor/README.md b/registry/coder/modules/cursor/README.md index 6499d5c..cd7116a 100644 --- a/registry/coder/modules/cursor/README.md +++ b/registry/coder/modules/cursor/README.md @@ -17,7 +17,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder) module "cursor" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/cursor/coder" - version = "1.0.19" + version = "1.1.0" agent_id = coder_agent.example.id } ``` @@ -30,7 +30,7 @@ module "cursor" { module "cursor" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/cursor/coder" - version = "1.0.19" + version = "1.1.0" agent_id = coder_agent.example.id folder = "/home/coder/project" } 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",