feat(cursor): added slug variable to cursor module (#87)

Co-authored-by: M Atif Ali <atif@coder.com>
This commit is contained in:
Phil Hachey 2025-05-15 13:39:21 -03:00 committed by GitHub
parent c4b106b9a2
commit d77d4a8f19
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 4 deletions

View File

@ -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"
}

View File

@ -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",