Compare commits
5 Commits
atif/jetbr
...
cj/github-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bc73955f50 | ||
|
|
6597a2d547 | ||
|
|
5101c27c83 | ||
|
|
90bfbfdc40 | ||
|
|
57d96ca27f |
186
.github/scripts/check.sh
vendored
Executable file
186
.github/scripts/check.sh
vendored
Executable file
@@ -0,0 +1,186 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -o pipefail
|
||||||
|
set -u
|
||||||
|
|
||||||
|
VERBOSE="${VERBOSE:-0}"
|
||||||
|
if [[ "${VERBOSE}" -ne "0" ]]; then
|
||||||
|
set -x
|
||||||
|
fi
|
||||||
|
|
||||||
|
# List of required environment variables
|
||||||
|
required_vars=(
|
||||||
|
"INSTATUS_API_KEY"
|
||||||
|
"INSTATUS_PAGE_ID"
|
||||||
|
"INSTATUS_COMPONENT_ID"
|
||||||
|
"VERCEL_API_KEY"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Check if each required variable is set
|
||||||
|
for var in "${required_vars[@]}"; do
|
||||||
|
if [[ -z "${!var:-}" ]]; then
|
||||||
|
echo "Error: Environment variable '$var' is not set."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
REGISTRY_BASE_URL="${REGISTRY_BASE_URL:-https://registry.coder.com}"
|
||||||
|
|
||||||
|
status=0
|
||||||
|
declare -a modules=()
|
||||||
|
declare -a failures=()
|
||||||
|
|
||||||
|
# Collect all module directories containing a main.tf file
|
||||||
|
for path in $(find . -maxdepth 2 -not -path '*/.*' -type f -name main.tf | cut -d '/' -f 2 | sort -u); do
|
||||||
|
modules+=("${path}")
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Checking modules: ${modules[*]}"
|
||||||
|
|
||||||
|
# Function to update the component status on Instatus
|
||||||
|
update_component_status() {
|
||||||
|
local component_status=$1
|
||||||
|
# see https://instatus.com/help/api/components
|
||||||
|
(curl -X PUT "https://api.instatus.com/v1/$INSTATUS_PAGE_ID/components/$INSTATUS_COMPONENT_ID" \
|
||||||
|
-H "Authorization: Bearer $INSTATUS_API_KEY" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d "{\"status\": \"$component_status\"}")
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to create an incident
|
||||||
|
create_incident() {
|
||||||
|
local incident_name="Testing Instatus"
|
||||||
|
local message="The following modules are experiencing issues:\n"
|
||||||
|
for i in "${!failures[@]}"; do
|
||||||
|
message+="$((i + 1)). ${failures[$i]}\n"
|
||||||
|
done
|
||||||
|
|
||||||
|
component_status="PARTIALOUTAGE"
|
||||||
|
if (( ${#failures[@]} == ${#modules[@]} )); then
|
||||||
|
component_status="MAJOROUTAGE"
|
||||||
|
fi
|
||||||
|
# see https://instatus.com/help/api/incidents
|
||||||
|
response=$(curl -s -X POST "https://api.instatus.com/v1/$INSTATUS_PAGE_ID/incidents" \
|
||||||
|
-H "Authorization: Bearer $INSTATUS_API_KEY" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d "{
|
||||||
|
\"name\": \"$incident_name\",
|
||||||
|
\"message\": \"$message\",
|
||||||
|
\"components\": [\"$INSTATUS_COMPONENT_ID\"],
|
||||||
|
\"status\": \"INVESTIGATING\",
|
||||||
|
\"notify\": true,
|
||||||
|
\"statuses\": [
|
||||||
|
{
|
||||||
|
\"id\": \"$INSTATUS_COMPONENT_ID\",
|
||||||
|
\"status\": \"PARTIALOUTAGE\"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}")
|
||||||
|
|
||||||
|
incident_id=$(echo "$response" | jq -r '.id')
|
||||||
|
echo "$incident_id"
|
||||||
|
}
|
||||||
|
|
||||||
|
force_redeploy_registry () {
|
||||||
|
# These are not secret values; safe to just expose directly in script
|
||||||
|
local VERCEL_TEAM_SLUG="codercom"
|
||||||
|
local VERCEL_TEAM_ID="team_tGkWfhEGGelkkqUUm9nXq17r"
|
||||||
|
local VERCEL_APP="registry"
|
||||||
|
|
||||||
|
local latest_res
|
||||||
|
latest_res=$(curl "https://api.vercel.com/v6/deployments?app=$VERCEL_APP&limit=1&slug=$VERCEL_TEAM_SLUG&teamId=$VERCEL_TEAM_ID&target=production&state=BUILDING,INITIALIZING,QUEUED,READY" \
|
||||||
|
--fail \
|
||||||
|
--silent \
|
||||||
|
--header "Authorization: Bearer $VERCEL_API_KEY" \
|
||||||
|
--header "Content-Type: application/json"
|
||||||
|
)
|
||||||
|
|
||||||
|
# If we have zero deployments, something is VERY wrong. Make the whole
|
||||||
|
# script exit with a non-zero status code
|
||||||
|
local latest_id
|
||||||
|
latest_id=$(echo "${latest_res}" | jq -r '.deployments[0].uid')
|
||||||
|
if [[ "${latest_id}" = "null" ]]; then
|
||||||
|
echo "Unable to pull any previous deployments for redeployment"
|
||||||
|
echo "Please redeploy the latest deployment manually in Vercel."
|
||||||
|
echo "https://vercel.com/codercom/registry/deployments"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
local latest_date_ts_seconds
|
||||||
|
latest_date_ts_seconds=$(echo "${latest_res}" | jq -r '.deployments[0].createdAt/1000|floor')
|
||||||
|
local current_date_ts_seconds
|
||||||
|
current_date_ts_seconds="$(date +%s)"
|
||||||
|
local max_redeploy_interval_seconds=7200 # 2 hours
|
||||||
|
if (( current_date_ts_seconds - latest_date_ts_seconds < max_redeploy_interval_seconds )); then
|
||||||
|
echo "The registry was deployed less than 2 hours ago."
|
||||||
|
echo "Not automatically re-deploying the regitstry."
|
||||||
|
echo "A human reading this message should decide if a redeployment is necessary."
|
||||||
|
echo "Please check the Vercel dashboard for more information."
|
||||||
|
echo "https://vercel.com/codercom/registry/deployments"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
local latest_deployment_state
|
||||||
|
latest_deployment_state="$(echo "${latest_res}" | jq -r '.deployments[0].state')"
|
||||||
|
if [[ "${latest_deployment_state}" != "READY" ]]; then
|
||||||
|
echo "Last deployment was not in READY state. Skipping redeployment."
|
||||||
|
echo "A human reading this message should decide if a redeployment is necessary."
|
||||||
|
echo "Please check the Vercel dashboard for more information."
|
||||||
|
echo "https://vercel.com/codercom/registry/deployments"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "============================================================="
|
||||||
|
echo "!!! Redeploying registry with deployment ID: ${latest_id} !!!"
|
||||||
|
echo "============================================================="
|
||||||
|
|
||||||
|
if ! curl -X POST "https://api.vercel.com/v13/deployments?forceNew=1&skipAutoDetectionConfirmation=1&slug=$VERCEL_TEAM_SLUG&teamId=$VERCEL_TEAM_ID" \
|
||||||
|
--fail \
|
||||||
|
--header "Authorization: Bearer $VERCEL_API_KEY" \
|
||||||
|
--header "Content-Type: application/json" \
|
||||||
|
--data-raw "{ \"deploymentId\": \"${latest_id}\", \"name\": \"${VERCEL_APP}\", \"target\": \"production\" }"; then
|
||||||
|
echo "DEPLOYMENT FAILED! Please check the Vercel dashboard for more information."
|
||||||
|
echo "https://vercel.com/codercom/registry/deployments"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# Check each module's accessibility
|
||||||
|
for module in "${modules[@]}"; do
|
||||||
|
# Trim leading/trailing whitespace from module name
|
||||||
|
module=$(echo "${module}" | xargs)
|
||||||
|
url="${REGISTRY_BASE_URL}/modules/${module}"
|
||||||
|
printf "=== Checking module %s at %s\n" "${module}" "${url}"
|
||||||
|
status_code=$(curl --output /dev/null --head --silent --fail --location "${url}" --retry 3 --write-out "%{http_code}")
|
||||||
|
if (( status_code != 200 )); then
|
||||||
|
printf "==> FAIL(%s)\n" "${status_code}"
|
||||||
|
status=1
|
||||||
|
failures+=("${module}")
|
||||||
|
else
|
||||||
|
printf "==> OK(%s)\n" "${status_code}"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Determine overall status and update Instatus component
|
||||||
|
if (( status == 0 )); then
|
||||||
|
echo "All modules are operational."
|
||||||
|
# set to
|
||||||
|
update_component_status "OPERATIONAL"
|
||||||
|
else
|
||||||
|
echo "The following modules have issues: ${failures[*]}"
|
||||||
|
# check if all modules are down
|
||||||
|
if (( ${#failures[@]} == ${#modules[@]} )); then
|
||||||
|
update_component_status "MAJOROUTAGE"
|
||||||
|
else
|
||||||
|
update_component_status "PARTIALOUTAGE"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Create a new incident
|
||||||
|
incident_id=$(create_incident)
|
||||||
|
echo "Created incident with ID: $incident_id"
|
||||||
|
|
||||||
|
# If a module is down, force a reployment to try getting things back online
|
||||||
|
# ASAP
|
||||||
|
force_redeploy_registry
|
||||||
|
fi
|
||||||
|
|
||||||
|
exit "${status}"
|
||||||
23
.github/workflows/check.yaml
vendored
Normal file
23
.github/workflows/check.yaml
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
name: Health
|
||||||
|
# Check modules health on registry.coder.com
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "*/13 * * * *" # Runs every 13th minute
|
||||||
|
workflow_dispatch: # Allows manual triggering of the workflow if needed
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
run-script:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Run check.sh
|
||||||
|
run: |
|
||||||
|
./.github/scripts/check.sh
|
||||||
|
env:
|
||||||
|
INSTATUS_API_KEY: ${{ secrets.INSTATUS_API_KEY }}
|
||||||
|
INSTATUS_PAGE_ID: ${{ secrets.INSTATUS_PAGE_ID }}
|
||||||
|
INSTATUS_COMPONENT_ID: ${{ secrets.INSTATUS_COMPONENT_ID }}
|
||||||
|
VERCEL_API_KEY: ${{ secrets.VERCEL_API_KEY }}
|
||||||
@@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
[](https://discord.gg/coder)
|
[](https://discord.gg/coder)
|
||||||
[](./LICENSE)
|
[](./LICENSE)
|
||||||
|
[](https://github.com/coder/modules/actions/workflows/check.yaml)
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -14,12 +14,12 @@ This module adds a JetBrains Gateway Button to open any workspace with a single
|
|||||||
```tf
|
```tf
|
||||||
module "jetbrains_gateway" {
|
module "jetbrains_gateway" {
|
||||||
source = "registry.coder.com/modules/jetbrains-gateway/coder"
|
source = "registry.coder.com/modules/jetbrains-gateway/coder"
|
||||||
version = "1.0.24"
|
version = "1.0.23"
|
||||||
agent_id = coder_agent.example.id
|
agent_id = coder_agent.example.id
|
||||||
agent_name = "example"
|
agent_name = "example"
|
||||||
folder = "/home/coder/example"
|
folder = "/home/coder/example"
|
||||||
jetbrains_ides = ["CL", "GO", "IU", "PY", "WS"]
|
jetbrains_ides = ["CL", "GO", "IU", "PY", "WS"]
|
||||||
default = ["GO"]
|
default = "GO"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -32,12 +32,12 @@ module "jetbrains_gateway" {
|
|||||||
```tf
|
```tf
|
||||||
module "jetbrains_gateway" {
|
module "jetbrains_gateway" {
|
||||||
source = "registry.coder.com/modules/jetbrains-gateway/coder"
|
source = "registry.coder.com/modules/jetbrains-gateway/coder"
|
||||||
version = "1.0.24"
|
version = "1.0.23"
|
||||||
agent_id = coder_agent.example.id
|
agent_id = coder_agent.example.id
|
||||||
agent_name = "example"
|
agent_name = "example"
|
||||||
folder = "/home/coder/example"
|
folder = "/home/coder/example"
|
||||||
jetbrains_ides = ["GO", "WS"]
|
jetbrains_ides = ["GO", "WS"]
|
||||||
default = ["GO"]
|
default = "GO"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -46,12 +46,12 @@ module "jetbrains_gateway" {
|
|||||||
```tf
|
```tf
|
||||||
module "jetbrains_gateway" {
|
module "jetbrains_gateway" {
|
||||||
source = "registry.coder.com/modules/jetbrains-gateway/coder"
|
source = "registry.coder.com/modules/jetbrains-gateway/coder"
|
||||||
version = "1.0.24"
|
version = "1.0.23"
|
||||||
agent_id = coder_agent.example.id
|
agent_id = coder_agent.example.id
|
||||||
agent_name = "example"
|
agent_name = "example"
|
||||||
folder = "/home/coder/example"
|
folder = "/home/coder/example"
|
||||||
jetbrains_ides = ["GO", "WS"]
|
jetbrains_ides = ["GO", "WS"]
|
||||||
default = ["GO"]
|
default = "GO"
|
||||||
latest = true
|
latest = true
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@@ -61,46 +61,32 @@ module "jetbrains_gateway" {
|
|||||||
```tf
|
```tf
|
||||||
module "jetbrains_gateway" {
|
module "jetbrains_gateway" {
|
||||||
source = "registry.coder.com/modules/jetbrains-gateway/coder"
|
source = "registry.coder.com/modules/jetbrains-gateway/coder"
|
||||||
version = "1.0.24"
|
version = "1.0.23"
|
||||||
agent_id = coder_agent.example.id
|
agent_id = coder_agent.example.id
|
||||||
agent_name = "example"
|
agent_name = "example"
|
||||||
folder = "/home/coder/example"
|
folder = "/home/coder/example"
|
||||||
jetbrains_ides = ["GO", "WS"]
|
jetbrains_ides = ["GO", "WS"]
|
||||||
default = ["GO"]
|
default = "GO"
|
||||||
latest = true
|
latest = true
|
||||||
channel = "eap"
|
channel = "eap"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Add Multiple IDEs with the default set to GoLand
|
### Custom base link
|
||||||
|
|
||||||
```tf
|
|
||||||
module "jetbrains_gateway" {
|
|
||||||
source = "registry.coder.com/modules/jetbrains-gateway/coder"
|
|
||||||
version = "1.0.24"
|
|
||||||
agent_id = coder_agent.example.id
|
|
||||||
agent_name = "example"
|
|
||||||
folder = "/home/coder/example"
|
|
||||||
jetbrains_ides = ["GO", "WS", "RD", "PY"]
|
|
||||||
default = ["GO", "PY"]
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Custom release download link
|
|
||||||
|
|
||||||
Due to the highest priority of the `ide_download_link` parameter in the `(jetbrains-gateway://...` within IDEA, the pre-configured download address will be overridden when using [IDEA's offline mode](https://www.jetbrains.com/help/idea/fully-offline-mode.html). Therefore, it is necessary to configure the `download_base_link` parameter for the `jetbrains_gateway` module to change the value of `ide_download_link`.
|
Due to the highest priority of the `ide_download_link` parameter in the `(jetbrains-gateway://...` within IDEA, the pre-configured download address will be overridden when using [IDEA's offline mode](https://www.jetbrains.com/help/idea/fully-offline-mode.html). Therefore, it is necessary to configure the `download_base_link` parameter for the `jetbrains_gateway` module to change the value of `ide_download_link`.
|
||||||
|
|
||||||
```tf
|
```tf
|
||||||
module "jetbrains_gateway" {
|
module "jetbrains_gateway" {
|
||||||
source = "registry.coder.com/modules/jetbrains-gateway/coder"
|
source = "registry.coder.com/modules/jetbrains-gateway/coder"
|
||||||
version = "1.0.24"
|
version = "1.0.23"
|
||||||
agent_id = coder_agent.example.id
|
agent_id = coder_agent.example.id
|
||||||
agent_name = "example"
|
agent_name = "example"
|
||||||
folder = "/home/coder/example"
|
folder = "/home/coder/example"
|
||||||
jetbrains_ides = ["GO", "WS"]
|
jetbrains_ides = ["GO", "WS"]
|
||||||
releases_base_link = "https://releases.internal.site/"
|
releases_base_link = "https://releases.internal.site/"
|
||||||
download_base_link = "https://download.internal.site/"
|
download_base_link = "https://download.internal.site/"
|
||||||
default = ["GO"]
|
default = "GO"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ variable "agent_id" {
|
|||||||
|
|
||||||
variable "slug" {
|
variable "slug" {
|
||||||
type = string
|
type = string
|
||||||
description = "The slug for the coder_app"
|
description = "The slug for the coder_app. Allows resuing the module with the same template."
|
||||||
default = "gateway"
|
default = "gateway"
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -39,9 +39,9 @@ variable "folder" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
variable "default" {
|
variable "default" {
|
||||||
default = []
|
default = ""
|
||||||
type = list(string)
|
type = string
|
||||||
description = "Default IDEs to be added to the Workspace page."
|
description = "Default IDE"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "order" {
|
variable "order" {
|
||||||
@@ -166,12 +166,6 @@ variable "download_base_link" {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "provide_options" {
|
|
||||||
type = bool
|
|
||||||
description = "Whether to provide coder_parameter options."
|
|
||||||
default = true
|
|
||||||
}
|
|
||||||
|
|
||||||
data "http" "jetbrains_ide_versions" {
|
data "http" "jetbrains_ide_versions" {
|
||||||
for_each = var.latest ? toset(var.jetbrains_ides) : toset([])
|
for_each = var.latest ? toset(var.jetbrains_ides) : toset([])
|
||||||
url = "${var.releases_base_link}/products/releases?code=${each.key}&latest=true&type=${var.channel}"
|
url = "${var.releases_base_link}/products/releases?code=${each.key}&latest=true&type=${var.channel}"
|
||||||
@@ -245,19 +239,23 @@ locals {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
default_ide_map = {
|
icon = local.jetbrains_ides[data.coder_parameter.jetbrains_ide.value].icon
|
||||||
for ide in var.default : ide => local.jetbrains_ides[ide]
|
json_data = var.latest ? jsondecode(data.http.jetbrains_ide_versions[data.coder_parameter.jetbrains_ide.value].response_body) : {}
|
||||||
}
|
key = var.latest ? keys(local.json_data)[0] : ""
|
||||||
|
display_name = local.jetbrains_ides[data.coder_parameter.jetbrains_ide.value].name
|
||||||
|
identifier = data.coder_parameter.jetbrains_ide.value
|
||||||
|
download_link = var.latest ? local.json_data[local.key][0].downloads.linux.link : local.jetbrains_ides[data.coder_parameter.jetbrains_ide.value].download_link
|
||||||
|
build_number = var.latest ? local.json_data[local.key][0].build : local.jetbrains_ides[data.coder_parameter.jetbrains_ide.value].build_number
|
||||||
|
version = var.latest ? local.json_data[local.key][0].version : var.jetbrains_ide_versions[data.coder_parameter.jetbrains_ide.value].version
|
||||||
}
|
}
|
||||||
|
|
||||||
data "coder_parameter" "jetbrains_ide" {
|
data "coder_parameter" "jetbrains_ide" {
|
||||||
for_each = local.default_ide_map
|
|
||||||
type = "string"
|
type = "string"
|
||||||
name = "jetbrains_ide_${each.key}"
|
name = "jetbrains_ide"
|
||||||
display_name = "JetBrains IDE ${each.key}"
|
display_name = "JetBrains IDE"
|
||||||
icon = "/icon/gateway.svg"
|
icon = "/icon/gateway.svg"
|
||||||
mutable = true
|
mutable = true
|
||||||
default = each.key
|
default = var.default == "" ? var.jetbrains_ides[0] : var.default
|
||||||
order = var.coder_parameter_order
|
order = var.coder_parameter_order
|
||||||
|
|
||||||
dynamic "option" {
|
dynamic "option" {
|
||||||
@@ -274,11 +272,10 @@ data "coder_workspace" "me" {}
|
|||||||
data "coder_workspace_owner" "me" {}
|
data "coder_workspace_owner" "me" {}
|
||||||
|
|
||||||
resource "coder_app" "gateway" {
|
resource "coder_app" "gateway" {
|
||||||
for_each = local.default_ide_map
|
|
||||||
agent_id = var.agent_id
|
agent_id = var.agent_id
|
||||||
slug = "${var.slug}-${lower(each.key)}"
|
slug = var.slug
|
||||||
display_name = each.value.name
|
display_name = local.display_name
|
||||||
icon = each.value.icon
|
icon = local.icon
|
||||||
external = true
|
external = true
|
||||||
order = var.order
|
order = var.order
|
||||||
url = join("", [
|
url = join("", [
|
||||||
@@ -295,23 +292,38 @@ resource "coder_app" "gateway" {
|
|||||||
"&token=",
|
"&token=",
|
||||||
"$SESSION_TOKEN",
|
"$SESSION_TOKEN",
|
||||||
"&ide_product_code=",
|
"&ide_product_code=",
|
||||||
each.key,
|
data.coder_parameter.jetbrains_ide.value,
|
||||||
"&ide_build_number=",
|
"&ide_build_number=",
|
||||||
each.value.build_number,
|
local.build_number,
|
||||||
"&ide_download_link=",
|
"&ide_download_link=",
|
||||||
each.value.download_link,
|
local.download_link,
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|
||||||
output "coder_apps" {
|
output "identifier" {
|
||||||
value = {
|
value = local.identifier
|
||||||
for key, app in coder_app.gateway : key => {
|
|
||||||
identifier = key
|
|
||||||
display_name = app.display_name
|
|
||||||
icon = local.jetbrains_ides[key].icon
|
|
||||||
download_link = local.jetbrains_ides[key].download_link
|
|
||||||
build_number = local.jetbrains_ides[key].build_number
|
|
||||||
version = local.jetbrains_ides[key].version
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output "display_name" {
|
||||||
|
value = local.display_name
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output "icon" {
|
||||||
|
value = local.icon
|
||||||
|
}
|
||||||
|
|
||||||
|
output "download_link" {
|
||||||
|
value = local.download_link
|
||||||
|
}
|
||||||
|
|
||||||
|
output "build_number" {
|
||||||
|
value = local.build_number
|
||||||
|
}
|
||||||
|
|
||||||
|
output "version" {
|
||||||
|
value = local.version
|
||||||
|
}
|
||||||
|
|
||||||
|
output "url" {
|
||||||
|
value = coder_app.gateway.url
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user