mirror of
https://github.com/coder/registry.git
synced 2026-06-02 20:48:14 +00:00
ccdca6daf5
Closes #383 ## Description - Update CONTRIBUTION.md to elaborate on ts and tf tests - Add ./scripts/terraform_test_all.sh to CI for ts tests <!-- Briefly describe what this PR does and why --> ## Type of Change - [ ] New module - [ ] Bug fix - [ ] Feature/enhancement - [X] Documentation - [X] Other ## Testing & Validation - [ ] Tests pass (`bun test`) - [X] Code formatted (`bun run fmt`) - [ ] Changes tested locally --------- Co-authored-by: Atif Ali <atif@coder.com>
108 lines
2.5 KiB
Terraform
108 lines
2.5 KiB
Terraform
terraform {
|
|
required_version = ">= 1.0"
|
|
|
|
required_providers {
|
|
coder = {
|
|
source = "coder/coder"
|
|
version = ">= 2.5"
|
|
}
|
|
}
|
|
}
|
|
|
|
locals {
|
|
# A built-in icon like "/icon/code.svg" or a full URL of icon
|
|
icon_url = "https://raw.githubusercontent.com/coder/coder/main/site/static/icon/code.svg"
|
|
# a map of all possible values
|
|
options = {
|
|
"Option 1" = {
|
|
"name" = "Option 1",
|
|
"value" = "1"
|
|
"icon" = "/emojis/1.png"
|
|
}
|
|
"Option 2" = {
|
|
"name" = "Option 2",
|
|
"value" = "2"
|
|
"icon" = "/emojis/2.png"
|
|
}
|
|
}
|
|
}
|
|
|
|
# Add required variables for your modules and remove any unneeded variables
|
|
variable "agent_id" {
|
|
type = string
|
|
description = "The ID of a Coder agent."
|
|
}
|
|
|
|
variable "log_path" {
|
|
type = string
|
|
description = "The path to the module log file."
|
|
default = "/tmp/module_name.log"
|
|
}
|
|
|
|
variable "port" {
|
|
type = number
|
|
description = "The port to run the application on."
|
|
default = 19999
|
|
}
|
|
|
|
variable "mutable" {
|
|
type = bool
|
|
description = "Whether the parameter is mutable."
|
|
default = true
|
|
}
|
|
|
|
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
|
|
}
|
|
# Add other variables here
|
|
|
|
|
|
resource "coder_script" "module_name" {
|
|
agent_id = var.agent_id
|
|
display_name = "Module Name"
|
|
icon = local.icon_url
|
|
script = templatefile("${path.module}/run.sh", {
|
|
LOG_PATH : var.log_path,
|
|
})
|
|
run_on_start = true
|
|
run_on_stop = false
|
|
}
|
|
|
|
resource "coder_app" "module_name" {
|
|
agent_id = var.agent_id
|
|
slug = "module-name"
|
|
display_name = "Module Name"
|
|
url = "http://localhost:${var.port}"
|
|
icon = local.icon_url
|
|
subdomain = false
|
|
share = "owner"
|
|
order = var.order
|
|
|
|
# Remove if the app does not have a healthcheck endpoint
|
|
healthcheck {
|
|
url = "http://localhost:${var.port}/healthz"
|
|
interval = 5
|
|
threshold = 6
|
|
}
|
|
}
|
|
|
|
data "coder_parameter" "module_name" {
|
|
type = "string"
|
|
name = "module_name"
|
|
display_name = "Module Name"
|
|
icon = local.icon_url
|
|
mutable = var.mutable
|
|
default = local.options["Option 1"]["value"]
|
|
|
|
dynamic "option" {
|
|
for_each = local.options
|
|
content {
|
|
icon = option.value.icon
|
|
name = option.value.name
|
|
value = option.value.value
|
|
}
|
|
}
|
|
}
|