90 lines
2.2 KiB
HCL
90 lines
2.2 KiB
HCL
terraform {
|
|
required_version = ">= 1.0"
|
|
|
|
required_providers {
|
|
coder = {
|
|
source = "coder/coder"
|
|
version = ">= 2.5"
|
|
}
|
|
}
|
|
}
|
|
|
|
variable "agent_id" {
|
|
type = string
|
|
description = "The ID of a Coder agent."
|
|
}
|
|
|
|
variable "folder" {
|
|
type = string
|
|
description = "The folder to open in Kiro IDE."
|
|
default = ""
|
|
}
|
|
|
|
variable "open_recent" {
|
|
type = bool
|
|
description = "Open the most recent workspace or folder. Falls back to the folder if there is no recent workspace or folder to open."
|
|
default = false
|
|
}
|
|
|
|
variable "order" {
|
|
type = number
|
|
description = "The order determines the position of app in the UI presentation. The lowest order is shown first and apps with equal order are sorted by name (ascending order)."
|
|
default = null
|
|
}
|
|
|
|
variable "group" {
|
|
type = string
|
|
description = "The name of a group that this app belongs to."
|
|
default = null
|
|
}
|
|
|
|
variable "mcp" {
|
|
type = string
|
|
description = "JSON-encoded string to configure MCP servers for Kiro. When set, writes ~/.kiro/settings/mcp.json."
|
|
default = ""
|
|
}
|
|
|
|
data "coder_workspace" "me" {}
|
|
data "coder_workspace_owner" "me" {}
|
|
|
|
locals {
|
|
mcp_b64 = var.mcp != "" ? base64encode(var.mcp) : ""
|
|
}
|
|
|
|
module "vscode-desktop-core" {
|
|
source = "registry.coder.com/coder/vscode-desktop-core/coder"
|
|
version = "1.0.0"
|
|
|
|
agent_id = var.agent_id
|
|
|
|
coder_app_icon = "/icon/kiro.svg"
|
|
coder_app_slug = "kiro-ai"
|
|
coder_app_display_name = "Kiro AI IDE"
|
|
coder_app_order = var.order
|
|
coder_app_group = var.group
|
|
|
|
folder = var.folder
|
|
open_recent = var.open_recent
|
|
protocol = "kiro"
|
|
}
|
|
|
|
resource "coder_script" "kiro_mcp" {
|
|
count = var.mcp != "" ? 1 : 0
|
|
agent_id = var.agent_id
|
|
display_name = "Kiro MCP"
|
|
icon = "/icon/kiro.svg"
|
|
run_on_start = true
|
|
start_blocks_login = false
|
|
script = <<-EOT
|
|
#!/bin/sh
|
|
set -eu
|
|
mkdir -p "$HOME/.kiro/settings"
|
|
echo -n "${local.mcp_b64}" | base64 -d > "$HOME/.kiro/settings/mcp.json"
|
|
chmod 600 "$HOME/.kiro/settings/mcp.json"
|
|
EOT
|
|
}
|
|
|
|
output "kiro_url" {
|
|
value = module.vscode-desktop-core.ide_uri
|
|
description = "Kiro IDE URL."
|
|
} |