feat: add test framework (#48)
* Add test framework * Add aws-region tests * Add azure-region tests * Update CONTRIBUTING.md * Add formatting * Improve fmt * Format Terraform
This commit is contained in:
31
.github/workflows/ci.yaml
vendored
Normal file
31
.github/workflows/ci.yaml
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
name: ci
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: oven-sh/setup-bun@v1
|
||||||
|
with:
|
||||||
|
bun-version: latest
|
||||||
|
- run: bun test
|
||||||
|
fmt:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: oven-sh/setup-bun@v1
|
||||||
|
with:
|
||||||
|
bun-version: latest
|
||||||
|
- run: bun fmt:ci
|
||||||
5
.gitignore
vendored
5
.gitignore
vendored
@@ -1 +1,4 @@
|
|||||||
.terraform*
|
.terraform*
|
||||||
|
node_modules
|
||||||
|
*.tfstate
|
||||||
|
*.tfstate.lock.info
|
||||||
6
.vscode/settings.json
vendored
Normal file
6
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"files.exclude": {
|
||||||
|
"**/terraform.tfstate": true,
|
||||||
|
"**/.terraform": true
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -6,37 +6,13 @@ To create a new module, clone this repository and run:
|
|||||||
./new.sh MOUDLE_NAME
|
./new.sh MOUDLE_NAME
|
||||||
```
|
```
|
||||||
|
|
||||||
Test a module by running an instance of Coder on your local machine:
|
|
||||||
|
|
||||||
```shell
|
|
||||||
coder server --in-memory
|
|
||||||
```
|
|
||||||
|
|
||||||
This will create a new module in the modules directory with the given name and scaffolding.
|
|
||||||
Edit the files, adding your module's implementation, documentation and screenshots.
|
|
||||||
|
|
||||||
## Testing a Module
|
## Testing a Module
|
||||||
|
|
||||||
Create a template and edit it to include your development module:
|
A suite of test-helpers exists to run `terraform apply` on modules with variables, and test script output against containers.
|
||||||
|
|
||||||
> [!NOTE]
|
Reference existing `*.test.ts` files for implementation.
|
||||||
> The Docker starter template is recommended for quick-iteration!
|
|
||||||
|
|
||||||
```hcl
|
```sh
|
||||||
module "MOUDLE_NAME" {
|
# Run tests for a specific module!
|
||||||
source = "/home/user/coder/modules/MOUDLE_NAME"
|
$ bun test -t '<module>'
|
||||||
}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also test your module by specifying the source as a git repository:
|
|
||||||
|
|
||||||
```hcl
|
|
||||||
module "MOUDLE_NAME" {
|
|
||||||
source = "git::https://github.com/<USERNAME>/<REPO>.git//<FOLDER>?ref=<BRANCH>"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
Build a workspace and your module will be consumed! 🥳
|
|
||||||
|
|
||||||
Open a pull-request with your module, a member of the Coder team will
|
|
||||||
manually test it, and after-merge it will appear on the Registry.
|
|
||||||
|
|||||||
25
aws-region/main.test.ts
Normal file
25
aws-region/main.test.ts
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import { describe, expect, it } from "bun:test";
|
||||||
|
import {
|
||||||
|
executeScriptInContainer,
|
||||||
|
runTerraformApply,
|
||||||
|
runTerraformInit,
|
||||||
|
testRequiredVariables,
|
||||||
|
} from "../test";
|
||||||
|
|
||||||
|
describe("aws-region", async () => {
|
||||||
|
await runTerraformInit(import.meta.dir);
|
||||||
|
|
||||||
|
testRequiredVariables(import.meta.dir, {});
|
||||||
|
|
||||||
|
it("default output", async () => {
|
||||||
|
const state = await runTerraformApply(import.meta.dir, {});
|
||||||
|
expect(state.outputs.value.value).toBe("us-east-1");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("customized default", async () => {
|
||||||
|
const state = await runTerraformApply(import.meta.dir, {
|
||||||
|
default: "us-west-2",
|
||||||
|
});
|
||||||
|
expect(state.outputs.value.value).toBe("us-west-2");
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -10,45 +10,45 @@ terraform {
|
|||||||
}
|
}
|
||||||
|
|
||||||
variable "display_name" {
|
variable "display_name" {
|
||||||
default = "AWS Region"
|
default = "AWS Region"
|
||||||
description = "The display name of the parameter."
|
description = "The display name of the parameter."
|
||||||
type = string
|
type = string
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "description" {
|
variable "description" {
|
||||||
default = "The region to deploy workspace infrastructure."
|
default = "The region to deploy workspace infrastructure."
|
||||||
description = "The description of the parameter."
|
description = "The description of the parameter."
|
||||||
type = string
|
type = string
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "default" {
|
variable "default" {
|
||||||
default = "us-east-1"
|
default = "us-east-1"
|
||||||
description = "The default region to use if no region is specified."
|
description = "The default region to use if no region is specified."
|
||||||
type = string
|
type = string
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "mutable" {
|
variable "mutable" {
|
||||||
default = false
|
default = false
|
||||||
description = "Whether the parameter can be changed after creation."
|
description = "Whether the parameter can be changed after creation."
|
||||||
type = bool
|
type = bool
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "custom_names" {
|
variable "custom_names" {
|
||||||
default = {}
|
default = {}
|
||||||
description = "A map of custom display names for region IDs."
|
description = "A map of custom display names for region IDs."
|
||||||
type = map(string)
|
type = map(string)
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "custom_icons" {
|
variable "custom_icons" {
|
||||||
default = {}
|
default = {}
|
||||||
description = "A map of custom icons for region IDs."
|
description = "A map of custom icons for region IDs."
|
||||||
type = map(string)
|
type = map(string)
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "exclude" {
|
variable "exclude" {
|
||||||
default = []
|
default = []
|
||||||
description = "A list of region IDs to exclude."
|
description = "A list of region IDs to exclude."
|
||||||
type = list(string)
|
type = list(string)
|
||||||
}
|
}
|
||||||
|
|
||||||
locals {
|
locals {
|
||||||
@@ -57,92 +57,92 @@ locals {
|
|||||||
# the provider, which requires a region.
|
# the provider, which requires a region.
|
||||||
regions = {
|
regions = {
|
||||||
"ap-northeast-1" = {
|
"ap-northeast-1" = {
|
||||||
name = "Asia Pacific (Tokyo)"
|
name = "Asia Pacific (Tokyo)"
|
||||||
icon = "/emojis/1f1ef-1f1f5.png"
|
icon = "/emojis/1f1ef-1f1f5.png"
|
||||||
}
|
}
|
||||||
"ap-northeast-2" = {
|
"ap-northeast-2" = {
|
||||||
name = "Asia Pacific (Seoul)"
|
name = "Asia Pacific (Seoul)"
|
||||||
icon = "/emojis/1f1f0-1f1f7.png"
|
icon = "/emojis/1f1f0-1f1f7.png"
|
||||||
}
|
}
|
||||||
"ap-northeast-3" = {
|
"ap-northeast-3" = {
|
||||||
name = "Asia Pacific (Osaka)"
|
name = "Asia Pacific (Osaka)"
|
||||||
icon = "/emojis/1f1ef-1f1f5.png"
|
icon = "/emojis/1f1ef-1f1f5.png"
|
||||||
}
|
}
|
||||||
"ap-south-1" = {
|
"ap-south-1" = {
|
||||||
name = "Asia Pacific (Mumbai)"
|
name = "Asia Pacific (Mumbai)"
|
||||||
icon = "/emojis/1f1ee-1f1f3.png"
|
icon = "/emojis/1f1ee-1f1f3.png"
|
||||||
}
|
}
|
||||||
"ap-southeast-1" = {
|
"ap-southeast-1" = {
|
||||||
name = "Asia Pacific (Singapore)"
|
name = "Asia Pacific (Singapore)"
|
||||||
icon = "/emojis/1f1f8-1f1ec.png"
|
icon = "/emojis/1f1f8-1f1ec.png"
|
||||||
}
|
}
|
||||||
"ap-southeast-2" = {
|
"ap-southeast-2" = {
|
||||||
name = "Asia Pacific (Sydney)"
|
name = "Asia Pacific (Sydney)"
|
||||||
icon = "/emojis/1f1e6-1f1fa.png"
|
icon = "/emojis/1f1e6-1f1fa.png"
|
||||||
}
|
}
|
||||||
"ca-central-1" = {
|
"ca-central-1" = {
|
||||||
name = "Canada (Central)"
|
name = "Canada (Central)"
|
||||||
icon = "/emojis/1f1e8-1f1e6.png"
|
icon = "/emojis/1f1e8-1f1e6.png"
|
||||||
}
|
}
|
||||||
"eu-central-1" = {
|
"eu-central-1" = {
|
||||||
name = "EU (Frankfurt)"
|
name = "EU (Frankfurt)"
|
||||||
icon = "/emojis/1f1ea-1f1fa.png"
|
icon = "/emojis/1f1ea-1f1fa.png"
|
||||||
}
|
}
|
||||||
"eu-north-1" = {
|
"eu-north-1" = {
|
||||||
name = "EU (Stockholm)"
|
name = "EU (Stockholm)"
|
||||||
icon = "/emojis/1f1ea-1f1fa.png"
|
icon = "/emojis/1f1ea-1f1fa.png"
|
||||||
}
|
}
|
||||||
"eu-west-1" = {
|
"eu-west-1" = {
|
||||||
name = "EU (Ireland)"
|
name = "EU (Ireland)"
|
||||||
icon = "/emojis/1f1ea-1f1fa.png"
|
icon = "/emojis/1f1ea-1f1fa.png"
|
||||||
}
|
}
|
||||||
"eu-west-2" = {
|
"eu-west-2" = {
|
||||||
name = "EU (London)"
|
name = "EU (London)"
|
||||||
icon = "/emojis/1f1ea-1f1fa.png"
|
icon = "/emojis/1f1ea-1f1fa.png"
|
||||||
}
|
}
|
||||||
"eu-west-3" = {
|
"eu-west-3" = {
|
||||||
name = "EU (Paris)"
|
name = "EU (Paris)"
|
||||||
icon = "/emojis/1f1ea-1f1fa.png"
|
icon = "/emojis/1f1ea-1f1fa.png"
|
||||||
}
|
}
|
||||||
"sa-east-1" = {
|
"sa-east-1" = {
|
||||||
name = "South America (São Paulo)"
|
name = "South America (São Paulo)"
|
||||||
icon = "/emojis/1f1e7-1f1f7.png"
|
icon = "/emojis/1f1e7-1f1f7.png"
|
||||||
}
|
}
|
||||||
"us-east-1" = {
|
"us-east-1" = {
|
||||||
name = "US East (N. Virginia)"
|
name = "US East (N. Virginia)"
|
||||||
icon = "/emojis/1f1fa-1f1f8.png"
|
icon = "/emojis/1f1fa-1f1f8.png"
|
||||||
}
|
}
|
||||||
"us-east-2" = {
|
"us-east-2" = {
|
||||||
name = "US East (Ohio)"
|
name = "US East (Ohio)"
|
||||||
icon = "/emojis/1f1fa-1f1f8.png"
|
icon = "/emojis/1f1fa-1f1f8.png"
|
||||||
}
|
}
|
||||||
"us-west-1" = {
|
"us-west-1" = {
|
||||||
name = "US West (N. California)"
|
name = "US West (N. California)"
|
||||||
icon = "/emojis/1f1fa-1f1f8.png"
|
icon = "/emojis/1f1fa-1f1f8.png"
|
||||||
}
|
}
|
||||||
"us-west-2" = {
|
"us-west-2" = {
|
||||||
name = "US West (Oregon)"
|
name = "US West (Oregon)"
|
||||||
icon = "/emojis/1f1fa-1f1f8.png"
|
icon = "/emojis/1f1fa-1f1f8.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
data "coder_parameter" "region" {
|
data "coder_parameter" "region" {
|
||||||
name = "aws_region"
|
name = "aws_region"
|
||||||
display_name = var.display_name
|
display_name = var.display_name
|
||||||
description = var.description
|
description = var.description
|
||||||
default = var.default
|
default = var.default
|
||||||
mutable = var.mutable
|
mutable = var.mutable
|
||||||
dynamic "option" {
|
dynamic "option" {
|
||||||
for_each = { for k, v in local.regions : k => v if !(contains(var.exclude, k)) }
|
for_each = { for k, v in local.regions : k => v if !(contains(var.exclude, k)) }
|
||||||
content {
|
content {
|
||||||
name = try(var.custom_names[option.key], option.value.name)
|
name = try(var.custom_names[option.key], option.value.name)
|
||||||
icon = try(var.custom_icons[option.key], option.value.icon)
|
icon = try(var.custom_icons[option.key], option.value.icon)
|
||||||
value = option.key
|
value = option.key
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
output "value" {
|
output "value" {
|
||||||
value = data.coder_parameter.region.value
|
value = data.coder_parameter.region.value
|
||||||
}
|
}
|
||||||
|
|||||||
25
azure-region/main.test.ts
Normal file
25
azure-region/main.test.ts
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import { describe, expect, it } from "bun:test";
|
||||||
|
import {
|
||||||
|
executeScriptInContainer,
|
||||||
|
runTerraformApply,
|
||||||
|
runTerraformInit,
|
||||||
|
testRequiredVariables,
|
||||||
|
} from "../test";
|
||||||
|
|
||||||
|
describe("azure-region", async () => {
|
||||||
|
await runTerraformInit(import.meta.dir);
|
||||||
|
|
||||||
|
testRequiredVariables(import.meta.dir, {});
|
||||||
|
|
||||||
|
it("default output", async () => {
|
||||||
|
const state = await runTerraformApply(import.meta.dir, {});
|
||||||
|
expect(state.outputs.value.value).toBe("eastus");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("customized default", async () => {
|
||||||
|
const state = await runTerraformApply(import.meta.dir, {
|
||||||
|
default: "westus",
|
||||||
|
});
|
||||||
|
expect(state.outputs.value.value).toBe("westus");
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -10,316 +10,316 @@ terraform {
|
|||||||
}
|
}
|
||||||
|
|
||||||
variable "display_name" {
|
variable "display_name" {
|
||||||
default = "Azure Region"
|
default = "Azure Region"
|
||||||
description = "The display name of the Coder parameter."
|
description = "The display name of the Coder parameter."
|
||||||
type = string
|
type = string
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "description" {
|
variable "description" {
|
||||||
default = "The region where your workspace will live."
|
default = "The region where your workspace will live."
|
||||||
description = "Description of the Coder parameter."
|
description = "Description of the Coder parameter."
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "default" {
|
variable "default" {
|
||||||
default = "eastus"
|
default = "eastus"
|
||||||
description = "The default region to use if no region is specified."
|
description = "The default region to use if no region is specified."
|
||||||
type = string
|
type = string
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "mutable" {
|
variable "mutable" {
|
||||||
default = false
|
default = false
|
||||||
description = "Whether the parameter can be changed after creation."
|
description = "Whether the parameter can be changed after creation."
|
||||||
type = bool
|
type = bool
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "custom_names" {
|
variable "custom_names" {
|
||||||
default = {}
|
default = {}
|
||||||
description = "A map of custom display names for region IDs."
|
description = "A map of custom display names for region IDs."
|
||||||
type = map(string)
|
type = map(string)
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "custom_icons" {
|
variable "custom_icons" {
|
||||||
default = {}
|
default = {}
|
||||||
description = "A map of custom icons for region IDs."
|
description = "A map of custom icons for region IDs."
|
||||||
type = map(string)
|
type = map(string)
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "exclude" {
|
variable "exclude" {
|
||||||
default = []
|
default = []
|
||||||
description = "A list of region IDs to exclude."
|
description = "A list of region IDs to exclude."
|
||||||
type = list(string)
|
type = list(string)
|
||||||
}
|
}
|
||||||
|
|
||||||
locals {
|
locals {
|
||||||
# Note: Options are limited to 64 regions, some redundant regions have been removed.
|
# Note: Options are limited to 64 regions, some redundant regions have been removed.
|
||||||
all_regions = {
|
all_regions = {
|
||||||
"australia" = {
|
"australia" = {
|
||||||
name = "Australia"
|
name = "Australia"
|
||||||
icon = "/emojis/1f1e6-1f1fa.png"
|
icon = "/emojis/1f1e6-1f1fa.png"
|
||||||
}
|
|
||||||
"australiacentral" = {
|
|
||||||
name = "Australia Central"
|
|
||||||
icon = "/emojis/1f1e6-1f1fa.png"
|
|
||||||
}
|
|
||||||
"australiacentral2" = {
|
|
||||||
name = "Australia Central 2"
|
|
||||||
icon = "/emojis/1f1e6-1f1fa.png"
|
|
||||||
}
|
|
||||||
"australiaeast" = {
|
|
||||||
name = "Australia (New South Wales)"
|
|
||||||
icon = "/emojis/1f1e6-1f1fa.png"
|
|
||||||
}
|
|
||||||
"australiasoutheast" = {
|
|
||||||
name = "Australia Southeast"
|
|
||||||
icon = "/emojis/1f1e6-1f1fa.png"
|
|
||||||
}
|
|
||||||
"brazil" = {
|
|
||||||
name = "Brazil"
|
|
||||||
icon = "/emojis/1f1e7-1f1f7.png"
|
|
||||||
}
|
|
||||||
"brazilsouth" = {
|
|
||||||
name = "Brazil (Sao Paulo)"
|
|
||||||
icon = "/emojis/1f1e7-1f1f7.png"
|
|
||||||
}
|
|
||||||
"brazilsoutheast" = {
|
|
||||||
name = "Brazil Southeast"
|
|
||||||
icon = "/emojis/1f1e7-1f1f7.png"
|
|
||||||
}
|
|
||||||
"brazilus" = {
|
|
||||||
name = "Brazil US"
|
|
||||||
icon = "/emojis/1f1e7-1f1f7.png"
|
|
||||||
}
|
|
||||||
"canada" = {
|
|
||||||
name = "Canada"
|
|
||||||
icon = "/emojis/1f1e8-1f1e6.png"
|
|
||||||
}
|
|
||||||
"canadacentral" = {
|
|
||||||
name = "Canada (Toronto)"
|
|
||||||
icon = "/emojis/1f1e8-1f1e6.png"
|
|
||||||
}
|
|
||||||
"canadaeast" = {
|
|
||||||
name = "Canada East"
|
|
||||||
icon = "/emojis/1f1e8-1f1e6.png"
|
|
||||||
}
|
|
||||||
"centralindia" = {
|
|
||||||
name = "India (Pune)"
|
|
||||||
icon = "/emojis/1f1ee-1f1f3.png"
|
|
||||||
}
|
|
||||||
"centralus" = {
|
|
||||||
name = "US (Iowa)"
|
|
||||||
icon = "/emojis/1f1fa-1f1f8.png"
|
|
||||||
}
|
|
||||||
"eastasia" = {
|
|
||||||
name = "East Asia (Hong Kong)"
|
|
||||||
icon = "/emojis/1f1f0-1f1f7.png"
|
|
||||||
}
|
|
||||||
"eastus" = {
|
|
||||||
name = "US (Virginia)"
|
|
||||||
icon = "/emojis/1f1fa-1f1f8.png"
|
|
||||||
}
|
|
||||||
"eastus2" = {
|
|
||||||
name = "US (Virginia) 2"
|
|
||||||
icon = "/emojis/1f1fa-1f1f8.png"
|
|
||||||
}
|
|
||||||
"europe" = {
|
|
||||||
name = "Europe"
|
|
||||||
icon = "/emojis/1f30d.png"
|
|
||||||
}
|
|
||||||
"france" = {
|
|
||||||
name = "France"
|
|
||||||
icon = "/emojis/1f1eb-1f1f7.png"
|
|
||||||
}
|
|
||||||
"francecentral" = {
|
|
||||||
name = "France (Paris)"
|
|
||||||
icon = "/emojis/1f1eb-1f1f7.png"
|
|
||||||
}
|
|
||||||
"francesouth" = {
|
|
||||||
name = "France South"
|
|
||||||
icon = "/emojis/1f1eb-1f1f7.png"
|
|
||||||
}
|
|
||||||
"germany" = {
|
|
||||||
name = "Germany"
|
|
||||||
icon = "/emojis/1f1e9-1f1ea.png"
|
|
||||||
}
|
|
||||||
"germanynorth" = {
|
|
||||||
name = "Germany North"
|
|
||||||
icon = "/emojis/1f1e9-1f1ea.png"
|
|
||||||
}
|
|
||||||
"germanywestcentral" = {
|
|
||||||
name = "Germany (Frankfurt)"
|
|
||||||
icon = "/emojis/1f1e9-1f1ea.png"
|
|
||||||
}
|
|
||||||
"india" = {
|
|
||||||
name = "India"
|
|
||||||
icon = "/emojis/1f1ee-1f1f3.png"
|
|
||||||
}
|
|
||||||
"japan" = {
|
|
||||||
name = "Japan"
|
|
||||||
icon = "/emojis/1f1ef-1f1f5.png"
|
|
||||||
}
|
|
||||||
"japaneast" = {
|
|
||||||
name = "Japan (Tokyo)"
|
|
||||||
icon = "/emojis/1f1ef-1f1f5.png"
|
|
||||||
}
|
|
||||||
"japanwest" = {
|
|
||||||
name = "Japan West"
|
|
||||||
icon = "/emojis/1f1ef-1f1f5.png"
|
|
||||||
}
|
|
||||||
"jioindiacentral" = {
|
|
||||||
name = "Jio India Central"
|
|
||||||
icon = "/emojis/1f1ee-1f1f3.png"
|
|
||||||
}
|
|
||||||
"jioindiawest" = {
|
|
||||||
name = "Jio India West"
|
|
||||||
icon = "/emojis/1f1ee-1f1f3.png"
|
|
||||||
}
|
|
||||||
"koreacentral" = {
|
|
||||||
name = "Korea (Seoul)"
|
|
||||||
icon = "/emojis/1f1f0-1f1f7.png"
|
|
||||||
}
|
|
||||||
"koreasouth" = {
|
|
||||||
name = "Korea South"
|
|
||||||
icon = "/emojis/1f1f0-1f1f7.png"
|
|
||||||
}
|
|
||||||
"northcentralus" = {
|
|
||||||
name = "North Central US"
|
|
||||||
icon = "/emojis/1f1fa-1f1f8.png"
|
|
||||||
}
|
|
||||||
"northeurope" = {
|
|
||||||
name = "Europe (Ireland)"
|
|
||||||
icon = "/emojis/1f1ea-1f1fa.png"
|
|
||||||
}
|
|
||||||
"norway" = {
|
|
||||||
name = "Norway"
|
|
||||||
icon = "/emojis/1f1f3-1f1f4.png"
|
|
||||||
}
|
|
||||||
"norwayeast" = {
|
|
||||||
name = "Norway (Oslo)"
|
|
||||||
icon = "/emojis/1f1f3-1f1f4.png"
|
|
||||||
}
|
|
||||||
"norwaywest" = {
|
|
||||||
name = "Norway West"
|
|
||||||
icon = "/emojis/1f1f3-1f1f4.png"
|
|
||||||
}
|
|
||||||
"qatarcentral" = {
|
|
||||||
name = "Qatar (Doha)"
|
|
||||||
icon = "/emojis/1f1f6-1f1e6.png"
|
|
||||||
}
|
|
||||||
"singapore" = {
|
|
||||||
name = "Singapore"
|
|
||||||
icon = "/emojis/1f1f8-1f1ec.png"
|
|
||||||
}
|
|
||||||
"southafrica" = {
|
|
||||||
name = "South Africa"
|
|
||||||
icon = "/emojis/1f1ff-1f1e6.png"
|
|
||||||
}
|
|
||||||
"southafricanorth" = {
|
|
||||||
name = "South Africa (Johannesburg)"
|
|
||||||
icon = "/emojis/1f1ff-1f1e6.png"
|
|
||||||
}
|
|
||||||
"southafricawest" = {
|
|
||||||
name = "South Africa West"
|
|
||||||
icon = "/emojis/1f1ff-1f1e6.png"
|
|
||||||
}
|
|
||||||
"southcentralus" = {
|
|
||||||
name = "US (Texas)"
|
|
||||||
icon = "/emojis/1f1fa-1f1f8.png"
|
|
||||||
}
|
|
||||||
"southeastasia" = {
|
|
||||||
name = "Southeast Asia (Singapore)"
|
|
||||||
icon = "/emojis/1f1f0-1f1f7.png"
|
|
||||||
}
|
|
||||||
"southindia" = {
|
|
||||||
name = "South India"
|
|
||||||
icon = "/emojis/1f1ee-1f1f3.png"
|
|
||||||
}
|
|
||||||
"swedencentral" = {
|
|
||||||
name = "Sweden (Gävle)"
|
|
||||||
icon = "/emojis/1f1f8-1f1ea.png"
|
|
||||||
}
|
|
||||||
"switzerland" = {
|
|
||||||
name = "Switzerland"
|
|
||||||
icon = "/emojis/1f1e8-1f1ed.png"
|
|
||||||
}
|
|
||||||
"switzerlandnorth" = {
|
|
||||||
name = "Switzerland (Zurich)"
|
|
||||||
icon = "/emojis/1f1e8-1f1ed.png"
|
|
||||||
}
|
|
||||||
"switzerlandwest" = {
|
|
||||||
name = "Switzerland West"
|
|
||||||
icon = "/emojis/1f1e8-1f1ed.png"
|
|
||||||
}
|
|
||||||
"uae" = {
|
|
||||||
name = "United Arab Emirates"
|
|
||||||
icon = "/emojis/1f1e6-1f1ea.png"
|
|
||||||
}
|
|
||||||
"uaecentral" = {
|
|
||||||
name = "UAE Central"
|
|
||||||
icon = "/emojis/1f1e6-1f1ea.png"
|
|
||||||
}
|
|
||||||
"uaenorth" = {
|
|
||||||
name = "UAE (Dubai)"
|
|
||||||
icon = "/emojis/1f1e6-1f1ea.png"
|
|
||||||
}
|
|
||||||
"uk" = {
|
|
||||||
name = "United Kingdom"
|
|
||||||
icon = "/emojis/1f1ec-1f1e7.png"
|
|
||||||
}
|
|
||||||
"uksouth" = {
|
|
||||||
name = "UK (London)"
|
|
||||||
icon = "/emojis/1f1ec-1f1e7.png"
|
|
||||||
}
|
|
||||||
"ukwest" = {
|
|
||||||
name = "UK West"
|
|
||||||
icon = "/emojis/1f1ec-1f1e7.png"
|
|
||||||
}
|
|
||||||
"unitedstates" = {
|
|
||||||
name = "United States"
|
|
||||||
icon = "/emojis/1f1fa-1f1f8.png"
|
|
||||||
}
|
|
||||||
"westcentralus" = {
|
|
||||||
name = "West Central US"
|
|
||||||
icon = "/emojis/1f1fa-1f1f8.png"
|
|
||||||
}
|
|
||||||
"westeurope" = {
|
|
||||||
name = "Europe (Netherlands)"
|
|
||||||
icon = "/emojis/1f1ea-1f1fa.png"
|
|
||||||
}
|
|
||||||
"westindia" = {
|
|
||||||
name = "West India"
|
|
||||||
icon = "/emojis/1f1ee-1f1f3.png"
|
|
||||||
}
|
|
||||||
"westus" = {
|
|
||||||
name = "West US"
|
|
||||||
icon = "/emojis/1f1fa-1f1f8.png"
|
|
||||||
}
|
|
||||||
"westus2" = {
|
|
||||||
name = "US (Washington)"
|
|
||||||
icon = "/emojis/1f1fa-1f1f8.png"
|
|
||||||
}
|
|
||||||
"westus3" = {
|
|
||||||
name = "US (Arizona)"
|
|
||||||
icon = "/emojis/1f1fa-1f1f8.png"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
"australiacentral" = {
|
||||||
|
name = "Australia Central"
|
||||||
|
icon = "/emojis/1f1e6-1f1fa.png"
|
||||||
|
}
|
||||||
|
"australiacentral2" = {
|
||||||
|
name = "Australia Central 2"
|
||||||
|
icon = "/emojis/1f1e6-1f1fa.png"
|
||||||
|
}
|
||||||
|
"australiaeast" = {
|
||||||
|
name = "Australia (New South Wales)"
|
||||||
|
icon = "/emojis/1f1e6-1f1fa.png"
|
||||||
|
}
|
||||||
|
"australiasoutheast" = {
|
||||||
|
name = "Australia Southeast"
|
||||||
|
icon = "/emojis/1f1e6-1f1fa.png"
|
||||||
|
}
|
||||||
|
"brazil" = {
|
||||||
|
name = "Brazil"
|
||||||
|
icon = "/emojis/1f1e7-1f1f7.png"
|
||||||
|
}
|
||||||
|
"brazilsouth" = {
|
||||||
|
name = "Brazil (Sao Paulo)"
|
||||||
|
icon = "/emojis/1f1e7-1f1f7.png"
|
||||||
|
}
|
||||||
|
"brazilsoutheast" = {
|
||||||
|
name = "Brazil Southeast"
|
||||||
|
icon = "/emojis/1f1e7-1f1f7.png"
|
||||||
|
}
|
||||||
|
"brazilus" = {
|
||||||
|
name = "Brazil US"
|
||||||
|
icon = "/emojis/1f1e7-1f1f7.png"
|
||||||
|
}
|
||||||
|
"canada" = {
|
||||||
|
name = "Canada"
|
||||||
|
icon = "/emojis/1f1e8-1f1e6.png"
|
||||||
|
}
|
||||||
|
"canadacentral" = {
|
||||||
|
name = "Canada (Toronto)"
|
||||||
|
icon = "/emojis/1f1e8-1f1e6.png"
|
||||||
|
}
|
||||||
|
"canadaeast" = {
|
||||||
|
name = "Canada East"
|
||||||
|
icon = "/emojis/1f1e8-1f1e6.png"
|
||||||
|
}
|
||||||
|
"centralindia" = {
|
||||||
|
name = "India (Pune)"
|
||||||
|
icon = "/emojis/1f1ee-1f1f3.png"
|
||||||
|
}
|
||||||
|
"centralus" = {
|
||||||
|
name = "US (Iowa)"
|
||||||
|
icon = "/emojis/1f1fa-1f1f8.png"
|
||||||
|
}
|
||||||
|
"eastasia" = {
|
||||||
|
name = "East Asia (Hong Kong)"
|
||||||
|
icon = "/emojis/1f1f0-1f1f7.png"
|
||||||
|
}
|
||||||
|
"eastus" = {
|
||||||
|
name = "US (Virginia)"
|
||||||
|
icon = "/emojis/1f1fa-1f1f8.png"
|
||||||
|
}
|
||||||
|
"eastus2" = {
|
||||||
|
name = "US (Virginia) 2"
|
||||||
|
icon = "/emojis/1f1fa-1f1f8.png"
|
||||||
|
}
|
||||||
|
"europe" = {
|
||||||
|
name = "Europe"
|
||||||
|
icon = "/emojis/1f30d.png"
|
||||||
|
}
|
||||||
|
"france" = {
|
||||||
|
name = "France"
|
||||||
|
icon = "/emojis/1f1eb-1f1f7.png"
|
||||||
|
}
|
||||||
|
"francecentral" = {
|
||||||
|
name = "France (Paris)"
|
||||||
|
icon = "/emojis/1f1eb-1f1f7.png"
|
||||||
|
}
|
||||||
|
"francesouth" = {
|
||||||
|
name = "France South"
|
||||||
|
icon = "/emojis/1f1eb-1f1f7.png"
|
||||||
|
}
|
||||||
|
"germany" = {
|
||||||
|
name = "Germany"
|
||||||
|
icon = "/emojis/1f1e9-1f1ea.png"
|
||||||
|
}
|
||||||
|
"germanynorth" = {
|
||||||
|
name = "Germany North"
|
||||||
|
icon = "/emojis/1f1e9-1f1ea.png"
|
||||||
|
}
|
||||||
|
"germanywestcentral" = {
|
||||||
|
name = "Germany (Frankfurt)"
|
||||||
|
icon = "/emojis/1f1e9-1f1ea.png"
|
||||||
|
}
|
||||||
|
"india" = {
|
||||||
|
name = "India"
|
||||||
|
icon = "/emojis/1f1ee-1f1f3.png"
|
||||||
|
}
|
||||||
|
"japan" = {
|
||||||
|
name = "Japan"
|
||||||
|
icon = "/emojis/1f1ef-1f1f5.png"
|
||||||
|
}
|
||||||
|
"japaneast" = {
|
||||||
|
name = "Japan (Tokyo)"
|
||||||
|
icon = "/emojis/1f1ef-1f1f5.png"
|
||||||
|
}
|
||||||
|
"japanwest" = {
|
||||||
|
name = "Japan West"
|
||||||
|
icon = "/emojis/1f1ef-1f1f5.png"
|
||||||
|
}
|
||||||
|
"jioindiacentral" = {
|
||||||
|
name = "Jio India Central"
|
||||||
|
icon = "/emojis/1f1ee-1f1f3.png"
|
||||||
|
}
|
||||||
|
"jioindiawest" = {
|
||||||
|
name = "Jio India West"
|
||||||
|
icon = "/emojis/1f1ee-1f1f3.png"
|
||||||
|
}
|
||||||
|
"koreacentral" = {
|
||||||
|
name = "Korea (Seoul)"
|
||||||
|
icon = "/emojis/1f1f0-1f1f7.png"
|
||||||
|
}
|
||||||
|
"koreasouth" = {
|
||||||
|
name = "Korea South"
|
||||||
|
icon = "/emojis/1f1f0-1f1f7.png"
|
||||||
|
}
|
||||||
|
"northcentralus" = {
|
||||||
|
name = "North Central US"
|
||||||
|
icon = "/emojis/1f1fa-1f1f8.png"
|
||||||
|
}
|
||||||
|
"northeurope" = {
|
||||||
|
name = "Europe (Ireland)"
|
||||||
|
icon = "/emojis/1f1ea-1f1fa.png"
|
||||||
|
}
|
||||||
|
"norway" = {
|
||||||
|
name = "Norway"
|
||||||
|
icon = "/emojis/1f1f3-1f1f4.png"
|
||||||
|
}
|
||||||
|
"norwayeast" = {
|
||||||
|
name = "Norway (Oslo)"
|
||||||
|
icon = "/emojis/1f1f3-1f1f4.png"
|
||||||
|
}
|
||||||
|
"norwaywest" = {
|
||||||
|
name = "Norway West"
|
||||||
|
icon = "/emojis/1f1f3-1f1f4.png"
|
||||||
|
}
|
||||||
|
"qatarcentral" = {
|
||||||
|
name = "Qatar (Doha)"
|
||||||
|
icon = "/emojis/1f1f6-1f1e6.png"
|
||||||
|
}
|
||||||
|
"singapore" = {
|
||||||
|
name = "Singapore"
|
||||||
|
icon = "/emojis/1f1f8-1f1ec.png"
|
||||||
|
}
|
||||||
|
"southafrica" = {
|
||||||
|
name = "South Africa"
|
||||||
|
icon = "/emojis/1f1ff-1f1e6.png"
|
||||||
|
}
|
||||||
|
"southafricanorth" = {
|
||||||
|
name = "South Africa (Johannesburg)"
|
||||||
|
icon = "/emojis/1f1ff-1f1e6.png"
|
||||||
|
}
|
||||||
|
"southafricawest" = {
|
||||||
|
name = "South Africa West"
|
||||||
|
icon = "/emojis/1f1ff-1f1e6.png"
|
||||||
|
}
|
||||||
|
"southcentralus" = {
|
||||||
|
name = "US (Texas)"
|
||||||
|
icon = "/emojis/1f1fa-1f1f8.png"
|
||||||
|
}
|
||||||
|
"southeastasia" = {
|
||||||
|
name = "Southeast Asia (Singapore)"
|
||||||
|
icon = "/emojis/1f1f0-1f1f7.png"
|
||||||
|
}
|
||||||
|
"southindia" = {
|
||||||
|
name = "South India"
|
||||||
|
icon = "/emojis/1f1ee-1f1f3.png"
|
||||||
|
}
|
||||||
|
"swedencentral" = {
|
||||||
|
name = "Sweden (Gävle)"
|
||||||
|
icon = "/emojis/1f1f8-1f1ea.png"
|
||||||
|
}
|
||||||
|
"switzerland" = {
|
||||||
|
name = "Switzerland"
|
||||||
|
icon = "/emojis/1f1e8-1f1ed.png"
|
||||||
|
}
|
||||||
|
"switzerlandnorth" = {
|
||||||
|
name = "Switzerland (Zurich)"
|
||||||
|
icon = "/emojis/1f1e8-1f1ed.png"
|
||||||
|
}
|
||||||
|
"switzerlandwest" = {
|
||||||
|
name = "Switzerland West"
|
||||||
|
icon = "/emojis/1f1e8-1f1ed.png"
|
||||||
|
}
|
||||||
|
"uae" = {
|
||||||
|
name = "United Arab Emirates"
|
||||||
|
icon = "/emojis/1f1e6-1f1ea.png"
|
||||||
|
}
|
||||||
|
"uaecentral" = {
|
||||||
|
name = "UAE Central"
|
||||||
|
icon = "/emojis/1f1e6-1f1ea.png"
|
||||||
|
}
|
||||||
|
"uaenorth" = {
|
||||||
|
name = "UAE (Dubai)"
|
||||||
|
icon = "/emojis/1f1e6-1f1ea.png"
|
||||||
|
}
|
||||||
|
"uk" = {
|
||||||
|
name = "United Kingdom"
|
||||||
|
icon = "/emojis/1f1ec-1f1e7.png"
|
||||||
|
}
|
||||||
|
"uksouth" = {
|
||||||
|
name = "UK (London)"
|
||||||
|
icon = "/emojis/1f1ec-1f1e7.png"
|
||||||
|
}
|
||||||
|
"ukwest" = {
|
||||||
|
name = "UK West"
|
||||||
|
icon = "/emojis/1f1ec-1f1e7.png"
|
||||||
|
}
|
||||||
|
"unitedstates" = {
|
||||||
|
name = "United States"
|
||||||
|
icon = "/emojis/1f1fa-1f1f8.png"
|
||||||
|
}
|
||||||
|
"westcentralus" = {
|
||||||
|
name = "West Central US"
|
||||||
|
icon = "/emojis/1f1fa-1f1f8.png"
|
||||||
|
}
|
||||||
|
"westeurope" = {
|
||||||
|
name = "Europe (Netherlands)"
|
||||||
|
icon = "/emojis/1f1ea-1f1fa.png"
|
||||||
|
}
|
||||||
|
"westindia" = {
|
||||||
|
name = "West India"
|
||||||
|
icon = "/emojis/1f1ee-1f1f3.png"
|
||||||
|
}
|
||||||
|
"westus" = {
|
||||||
|
name = "West US"
|
||||||
|
icon = "/emojis/1f1fa-1f1f8.png"
|
||||||
|
}
|
||||||
|
"westus2" = {
|
||||||
|
name = "US (Washington)"
|
||||||
|
icon = "/emojis/1f1fa-1f1f8.png"
|
||||||
|
}
|
||||||
|
"westus3" = {
|
||||||
|
name = "US (Arizona)"
|
||||||
|
icon = "/emojis/1f1fa-1f1f8.png"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
data "coder_parameter" "region" {
|
data "coder_parameter" "region" {
|
||||||
name = "azure_region"
|
name = "azure_region"
|
||||||
display_name = var.display_name
|
display_name = var.display_name
|
||||||
description = var.description
|
description = var.description
|
||||||
default = var.default
|
default = var.default
|
||||||
mutable = var.mutable
|
mutable = var.mutable
|
||||||
dynamic "option" {
|
dynamic "option" {
|
||||||
for_each = { for k, v in local.all_regions : k => v if !(contains(var.exclude, k)) }
|
for_each = { for k, v in local.all_regions : k => v if !(contains(var.exclude, k)) }
|
||||||
content {
|
content {
|
||||||
name = try(var.custom_names[option.key], option.value.name)
|
name = try(var.custom_names[option.key], option.value.name)
|
||||||
icon = try(var.custom_icons[option.key], option.value.icon)
|
icon = try(var.custom_icons[option.key], option.value.icon)
|
||||||
value = option.key
|
value = option.key
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
output "value" {
|
output "value" {
|
||||||
value = data.coder_parameter.region.value
|
value = data.coder_parameter.region.value
|
||||||
}
|
}
|
||||||
|
|||||||
2
bunfig.toml
Normal file
2
bunfig.toml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
[test]
|
||||||
|
preload = ["./setup.ts"]
|
||||||
@@ -10,59 +10,59 @@ terraform {
|
|||||||
}
|
}
|
||||||
|
|
||||||
variable "agent_id" {
|
variable "agent_id" {
|
||||||
type = string
|
type = string
|
||||||
description = "The ID of a Coder agent."
|
description = "The ID of a Coder agent."
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "extensions" {
|
variable "extensions" {
|
||||||
type = list(string)
|
type = list(string)
|
||||||
description = "A list of extensions to install."
|
description = "A list of extensions to install."
|
||||||
default = [ ]
|
default = []
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "port" {
|
variable "port" {
|
||||||
type = number
|
type = number
|
||||||
description = "The port to run code-server on."
|
description = "The port to run code-server on."
|
||||||
default = 13337
|
default = 13337
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "settings" {
|
variable "settings" {
|
||||||
type = map(string)
|
type = map(string)
|
||||||
description = "A map of settings to apply to code-server."
|
description = "A map of settings to apply to code-server."
|
||||||
default = {}
|
default = {}
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "folder" {
|
variable "folder" {
|
||||||
type = string
|
type = string
|
||||||
description = "The folder to open in code-server."
|
description = "The folder to open in code-server."
|
||||||
default = ""
|
default = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "install_prefix" {
|
variable "install_prefix" {
|
||||||
type = string
|
type = string
|
||||||
description = "The prefix to install code-server to."
|
description = "The prefix to install code-server to."
|
||||||
default = "/tmp/code-server"
|
default = "/tmp/code-server"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "log_path" {
|
variable "log_path" {
|
||||||
type = string
|
type = string
|
||||||
description = "The path to log code-server to."
|
description = "The path to log code-server to."
|
||||||
default = "/tmp/code-server.log"
|
default = "/tmp/code-server.log"
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "coder_script" "code-server" {
|
resource "coder_script" "code-server" {
|
||||||
agent_id = var.agent_id
|
agent_id = var.agent_id
|
||||||
display_name = "code-server"
|
display_name = "code-server"
|
||||||
icon = "/icon/code.svg"
|
icon = "/icon/code.svg"
|
||||||
script = templatefile("${path.module}/run.sh", {
|
script = templatefile("${path.module}/run.sh", {
|
||||||
EXTENSIONS: join(",", var.extensions),
|
EXTENSIONS : join(",", var.extensions),
|
||||||
PORT: var.port,
|
PORT : var.port,
|
||||||
LOG_PATH: var.log_path,
|
LOG_PATH : var.log_path,
|
||||||
INSTALL_PREFIX: var.install_prefix,
|
INSTALL_PREFIX : var.install_prefix,
|
||||||
// This is necessary otherwise the quotes are stripped!
|
// This is necessary otherwise the quotes are stripped!
|
||||||
SETTINGS: replace(jsonencode(var.settings), "\"", "\\\""),
|
SETTINGS : replace(jsonencode(var.settings), "\"", "\\\""),
|
||||||
})
|
})
|
||||||
run_on_start = true
|
run_on_start = true
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "coder_app" "code-server" {
|
resource "coder_app" "code-server" {
|
||||||
|
|||||||
@@ -13,4 +13,4 @@ A parameter with all fly.io regions. This allows developers to select the region
|
|||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
TODO
|
TODO
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ maintainer_github: coder
|
|||||||
verified: true
|
verified: true
|
||||||
tags: [gcp, regions, parameter, helper]
|
tags: [gcp, regions, parameter, helper]
|
||||||
---
|
---
|
||||||
|
|
||||||
# Google Cloud Platform Regions
|
# Google Cloud Platform Regions
|
||||||
|
|
||||||
This module adds Google Cloud Platform regions to your Coder template.
|
This module adds Google Cloud Platform regions to your Coder template.
|
||||||
@@ -16,32 +17,32 @@ This module adds Google Cloud Platform regions to your Coder template.
|
|||||||
|
|
||||||
1. Add only GPU zones in the US West 1 region:
|
1. Add only GPU zones in the US West 1 region:
|
||||||
|
|
||||||
```hcl
|
```hcl
|
||||||
module "gcp_region" {
|
module "gcp_region" {
|
||||||
source = "https://registry.coder.com/modules/gcp-region"
|
source = "https://registry.coder.com/modules/gcp-region"
|
||||||
default = ["us-west1-a"]
|
default = ["us-west1-a"]
|
||||||
regions = ["us-west1"]
|
regions = ["us-west1"]
|
||||||
gpu_only = false
|
gpu_only = false
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Add all zones in the Europe West region:
|
2. Add all zones in the Europe West region:
|
||||||
|
|
||||||
```hcl
|
```hcl
|
||||||
module "gcp_region" {
|
module "gcp_region" {
|
||||||
source = "https://registry.coder.com/modules/gcp-region"
|
source = "https://registry.coder.com/modules/gcp-region"
|
||||||
regions = ["europe-west"]
|
regions = ["europe-west"]
|
||||||
single_zone_per_region = false
|
single_zone_per_region = false
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Add a single zone from each region in US and Europe that laos has GPUs
|
3. Add a single zone from each region in US and Europe that laos has GPUs
|
||||||
|
|
||||||
```hcl
|
```hcl
|
||||||
module "gcp_region" {
|
module "gcp_region" {
|
||||||
source = "https://registry.coder.com/modules/gcp-region"
|
source = "https://registry.coder.com/modules/gcp-region"
|
||||||
regions = ["us", "europe"]
|
regions = ["us", "europe"]
|
||||||
gpu_only = true
|
gpu_only = true
|
||||||
single_zone_per_region = true
|
single_zone_per_region = true
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ maintainer_github: coder
|
|||||||
verified: true
|
verified: true
|
||||||
tags: [git, helper]
|
tags: [git, helper]
|
||||||
---
|
---
|
||||||
|
|
||||||
# Git Clone
|
# Git Clone
|
||||||
|
|
||||||
This module allows you to automatically clone a repository by URL and skip if it exists in the path provided.
|
This module allows you to automatically clone a repository by URL and skip if it exists in the path provided.
|
||||||
|
|||||||
39
git-clone/main.test.ts
Normal file
39
git-clone/main.test.ts
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
import { describe, expect, it } from "bun:test";
|
||||||
|
import {
|
||||||
|
executeScriptInContainer,
|
||||||
|
runTerraformApply,
|
||||||
|
runTerraformInit,
|
||||||
|
testRequiredVariables,
|
||||||
|
} from "../test";
|
||||||
|
|
||||||
|
describe("git-clone", async () => {
|
||||||
|
await runTerraformInit(import.meta.dir);
|
||||||
|
|
||||||
|
testRequiredVariables(import.meta.dir, {
|
||||||
|
agent_id: "foo",
|
||||||
|
url: "foo",
|
||||||
|
});
|
||||||
|
|
||||||
|
it("fails without git", async () => {
|
||||||
|
const state = await runTerraformApply(import.meta.dir, {
|
||||||
|
agent_id: "foo",
|
||||||
|
url: "some-url",
|
||||||
|
});
|
||||||
|
const output = await executeScriptInContainer(state, "alpine");
|
||||||
|
expect(output.exitCode).toBe(1);
|
||||||
|
expect(output.stdout).toEqual(["Git is not installed!"]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("runs with git", async () => {
|
||||||
|
const state = await runTerraformApply(import.meta.dir, {
|
||||||
|
agent_id: "foo",
|
||||||
|
url: "fake-url",
|
||||||
|
});
|
||||||
|
const output = await executeScriptInContainer(state, "alpine/git");
|
||||||
|
expect(output.exitCode).toBe(128);
|
||||||
|
expect(output.stdout).toEqual([
|
||||||
|
"Creating directory ~/fake-url...",
|
||||||
|
"Cloning fake-url to ~/fake-url...",
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -10,8 +10,8 @@ terraform {
|
|||||||
}
|
}
|
||||||
|
|
||||||
variable "url" {
|
variable "url" {
|
||||||
description = "The URL of the Git repository."
|
description = "The URL of the Git repository."
|
||||||
type = string
|
type = string
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "path" {
|
variable "path" {
|
||||||
@@ -21,17 +21,17 @@ variable "path" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
variable "agent_id" {
|
variable "agent_id" {
|
||||||
description = "The ID of a Coder agent."
|
description = "The ID of a Coder agent."
|
||||||
type = string
|
type = string
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "coder_script" "git_clone" {
|
resource "coder_script" "git_clone" {
|
||||||
agent_id = var.agent_id
|
agent_id = var.agent_id
|
||||||
display_name = "Git Clone"
|
display_name = "Git Clone"
|
||||||
icon = "/icons/git.svg"
|
icon = "/icons/git.svg"
|
||||||
script = templatefile("${path.module}/run.sh", {
|
script = templatefile("${path.module}/run.sh", {
|
||||||
CLONE_PATH: var.path != "" ? var.path : join("/", ["~", basename(var.url)]),
|
CLONE_PATH : var.path != "" ? var.path : join("/", ["~", basename(var.url)]),
|
||||||
REPO_URL: var.url,
|
REPO_URL : var.url,
|
||||||
})
|
})
|
||||||
run_on_start = true
|
run_on_start = true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ maintainer_github: coder
|
|||||||
verified: true
|
verified: true
|
||||||
tags: [ide, jetbrains, helper, parameter]
|
tags: [ide, jetbrains, helper, parameter]
|
||||||
---
|
---
|
||||||
|
|
||||||
# JetBrains Gateway
|
# JetBrains Gateway
|
||||||
|
|
||||||
This module adds a JetBrains Gateway Button to open any workspace with a single click.
|
This module adds a JetBrains Gateway Button to open any workspace with a single click.
|
||||||
|
|||||||
@@ -10,4 +10,4 @@ tags: [integration]
|
|||||||
|
|
||||||
# JFrog
|
# JFrog
|
||||||
|
|
||||||
TODO
|
TODO
|
||||||
|
|||||||
14
package.json
Normal file
14
package.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"name": "modules",
|
||||||
|
"scripts": {
|
||||||
|
"test": "bun test",
|
||||||
|
"fmt": "bun x prettier -w **/*.ts **/*.md *.md && terraform fmt **/*.tf",
|
||||||
|
"fmt:ci": "bun x prettier --check **/*.ts **/*.md *.md && terraform fmt -check **/*.tf"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"bun-types": "^1.0.3"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"typescript": "^5.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -10,29 +10,29 @@ terraform {
|
|||||||
}
|
}
|
||||||
|
|
||||||
variable "agent_id" {
|
variable "agent_id" {
|
||||||
type = string
|
type = string
|
||||||
description = "The ID of a Coder agent."
|
description = "The ID of a Coder agent."
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "path" {
|
variable "path" {
|
||||||
type = string
|
type = string
|
||||||
description = "The path to a script that will be ran on start enabling a user to personalize their workspace."
|
description = "The path to a script that will be ran on start enabling a user to personalize their workspace."
|
||||||
default = "~/personalize"
|
default = "~/personalize"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "log_path" {
|
variable "log_path" {
|
||||||
type = string
|
type = string
|
||||||
description = "The path to a log file that will contain the output of the personalize script."
|
description = "The path to a log file that will contain the output of the personalize script."
|
||||||
default = "~/personalize.log"
|
default = "~/personalize.log"
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "coder_script" "personalize" {
|
resource "coder_script" "personalize" {
|
||||||
agent_id = var.agent_id
|
agent_id = var.agent_id
|
||||||
script = templatefile("${path.module}/run.sh", {
|
script = templatefile("${path.module}/run.sh", {
|
||||||
PERSONALIZE_PATH: var.path,
|
PERSONALIZE_PATH : var.path,
|
||||||
})
|
})
|
||||||
display_name = "Personalize"
|
display_name = "Personalize"
|
||||||
icon = "/emojis/1f58c.png"
|
icon = "/emojis/1f58c.png"
|
||||||
log_path = var.log_path
|
log_path = var.log_path
|
||||||
run_on_start = true
|
run_on_start = true
|
||||||
}
|
}
|
||||||
|
|||||||
47
setup.ts
Normal file
47
setup.ts
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
import { readableStreamToText, spawn } from "bun";
|
||||||
|
import { afterAll, beforeAll } from "bun:test";
|
||||||
|
|
||||||
|
const removeStatefiles = async () => {
|
||||||
|
const proc = spawn([
|
||||||
|
"find",
|
||||||
|
".",
|
||||||
|
"-type",
|
||||||
|
"f",
|
||||||
|
"-name",
|
||||||
|
"*.tfstate",
|
||||||
|
"-name",
|
||||||
|
"*.tfstate.lock.info",
|
||||||
|
"-delete",
|
||||||
|
]);
|
||||||
|
await proc.exited;
|
||||||
|
};
|
||||||
|
|
||||||
|
const removeOldContainers = async () => {
|
||||||
|
let proc = spawn([
|
||||||
|
"docker",
|
||||||
|
"ps",
|
||||||
|
"-a",
|
||||||
|
"-q",
|
||||||
|
"--filter",
|
||||||
|
`label=modules-test`,
|
||||||
|
]);
|
||||||
|
let containerIDsRaw = await readableStreamToText(proc.stdout);
|
||||||
|
let exitCode = await proc.exited;
|
||||||
|
if (exitCode !== 0) {
|
||||||
|
throw new Error(containerIDsRaw);
|
||||||
|
}
|
||||||
|
containerIDsRaw = containerIDsRaw.trim();
|
||||||
|
if (containerIDsRaw === "") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
proc = spawn(["docker", "rm", "-f", ...containerIDsRaw.split("\n")]);
|
||||||
|
const stdout = await readableStreamToText(proc.stdout);
|
||||||
|
exitCode = await proc.exited;
|
||||||
|
if (exitCode !== 0) {
|
||||||
|
throw new Error(stdout);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
afterAll(async () => {
|
||||||
|
await Promise.all([removeStatefiles(), removeOldContainers()]);
|
||||||
|
});
|
||||||
212
test.ts
Normal file
212
test.ts
Normal file
@@ -0,0 +1,212 @@
|
|||||||
|
import { readableStreamToText, spawn } from "bun";
|
||||||
|
import { afterEach, expect, it } from "bun:test";
|
||||||
|
import { readFile, unlink } from "fs/promises";
|
||||||
|
|
||||||
|
export const runContainer = async (
|
||||||
|
image: string,
|
||||||
|
init = "sleep infinity",
|
||||||
|
): Promise<string> => {
|
||||||
|
const proc = spawn([
|
||||||
|
"docker",
|
||||||
|
"run",
|
||||||
|
"--rm",
|
||||||
|
"-d",
|
||||||
|
"--label",
|
||||||
|
"modules-test=true",
|
||||||
|
"--entrypoint",
|
||||||
|
"sh",
|
||||||
|
image,
|
||||||
|
"-c",
|
||||||
|
init,
|
||||||
|
]);
|
||||||
|
let containerID = await readableStreamToText(proc.stdout);
|
||||||
|
const exitCode = await proc.exited;
|
||||||
|
if (exitCode !== 0) {
|
||||||
|
throw new Error(containerID);
|
||||||
|
}
|
||||||
|
return containerID.trim();
|
||||||
|
};
|
||||||
|
|
||||||
|
// executeScriptInContainer finds the only "coder_script"
|
||||||
|
// resource in the given state and runs it in a container.
|
||||||
|
export const executeScriptInContainer = async (
|
||||||
|
state: TerraformState,
|
||||||
|
image: string,
|
||||||
|
): Promise<{
|
||||||
|
exitCode: number;
|
||||||
|
stdout: string[];
|
||||||
|
stderr: string[];
|
||||||
|
}> => {
|
||||||
|
const instance = findResourceInstance(state, "coder_script");
|
||||||
|
const id = await runContainer(image);
|
||||||
|
const resp = await execContainer(id, ["sh", "-c", instance.script]);
|
||||||
|
const stdout = resp.stdout.trim().split("\n");
|
||||||
|
const stderr = resp.stderr.trim().split("\n");
|
||||||
|
return {
|
||||||
|
exitCode: resp.exitCode,
|
||||||
|
stdout,
|
||||||
|
stderr,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export const execContainer = async (
|
||||||
|
id: string,
|
||||||
|
cmd: string[],
|
||||||
|
): Promise<{
|
||||||
|
exitCode: number;
|
||||||
|
stderr: string;
|
||||||
|
stdout: string;
|
||||||
|
}> => {
|
||||||
|
const proc = spawn(["docker", "exec", id, ...cmd], {
|
||||||
|
stderr: "pipe",
|
||||||
|
stdout: "pipe",
|
||||||
|
});
|
||||||
|
const [stderr, stdout] = await Promise.all([
|
||||||
|
readableStreamToText(proc.stderr),
|
||||||
|
readableStreamToText(proc.stdout),
|
||||||
|
]);
|
||||||
|
const exitCode = await proc.exited;
|
||||||
|
return {
|
||||||
|
exitCode,
|
||||||
|
stderr,
|
||||||
|
stdout,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export interface TerraformState {
|
||||||
|
outputs: {
|
||||||
|
[key: string]: {
|
||||||
|
type: string;
|
||||||
|
value: any;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
resources: [
|
||||||
|
{
|
||||||
|
type: string;
|
||||||
|
name: string;
|
||||||
|
provider: string;
|
||||||
|
instances: [
|
||||||
|
{
|
||||||
|
attributes: {
|
||||||
|
[key: string]: any;
|
||||||
|
};
|
||||||
|
},
|
||||||
|
];
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface CoderScriptAttributes {
|
||||||
|
script: string;
|
||||||
|
agent_id: string;
|
||||||
|
url: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
// findResourceInstance finds the first instance of the given resource
|
||||||
|
// type in the given state. If name is specified, it will only find
|
||||||
|
// the instance with the given name.
|
||||||
|
export const findResourceInstance = <T extends "coder_script" | string>(
|
||||||
|
state: TerraformState,
|
||||||
|
type: T,
|
||||||
|
name?: string,
|
||||||
|
// if type is "coder_script" return CoderScriptAttributes
|
||||||
|
): T extends "coder_script"
|
||||||
|
? CoderScriptAttributes
|
||||||
|
: Record<string, string> => {
|
||||||
|
const resource = state.resources.find(
|
||||||
|
(resource) =>
|
||||||
|
resource.type === type && (name ? resource.name === name : true),
|
||||||
|
);
|
||||||
|
if (!resource) {
|
||||||
|
throw new Error(`Resource ${type} not found`);
|
||||||
|
}
|
||||||
|
if (resource.instances.length !== 1) {
|
||||||
|
throw new Error(
|
||||||
|
`Resource ${type} has ${resource.instances.length} instances`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return resource.instances[0].attributes as any;
|
||||||
|
};
|
||||||
|
|
||||||
|
// assertRequiredVariables creates a test-case
|
||||||
|
// for each variable provided and ensures that
|
||||||
|
// the apply fails without it.
|
||||||
|
export const testRequiredVariables = (
|
||||||
|
dir: string,
|
||||||
|
vars: Record<string, string>,
|
||||||
|
) => {
|
||||||
|
// Ensures that all required variables are provided.
|
||||||
|
it("required variables", async () => {
|
||||||
|
await runTerraformApply(dir, vars);
|
||||||
|
});
|
||||||
|
const varNames = Object.keys(vars);
|
||||||
|
varNames.forEach((varName) => {
|
||||||
|
// Ensures that every variable provided is required!
|
||||||
|
it("missing variable " + varName, async () => {
|
||||||
|
const localVars = {};
|
||||||
|
varNames.forEach((otherVarName) => {
|
||||||
|
if (otherVarName !== varName) {
|
||||||
|
localVars[otherVarName] = vars[otherVarName];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
await runTerraformApply(dir, localVars);
|
||||||
|
} catch (ex) {
|
||||||
|
expect(ex.message).toContain(
|
||||||
|
`input variable \"${varName}\" is not set, and has no default`,
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
throw new Error(`${varName} is not a required variable!`);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
// runTerraformApply runs terraform apply in the given directory
|
||||||
|
// with the given variables. It is fine to run in parallel with
|
||||||
|
// other instances of this function, as it uses a random state file.
|
||||||
|
export const runTerraformApply = async (
|
||||||
|
dir: string,
|
||||||
|
vars: Record<string, string>,
|
||||||
|
): Promise<TerraformState> => {
|
||||||
|
const stateFile = `${dir}/${crypto.randomUUID()}.tfstate`;
|
||||||
|
const env = {};
|
||||||
|
Object.keys(vars).forEach((key) => (env[`TF_VAR_${key}`] = vars[key]));
|
||||||
|
const proc = spawn(
|
||||||
|
[
|
||||||
|
"terraform",
|
||||||
|
"apply",
|
||||||
|
"-compact-warnings",
|
||||||
|
"-input=false",
|
||||||
|
"-auto-approve",
|
||||||
|
"-state",
|
||||||
|
stateFile,
|
||||||
|
],
|
||||||
|
{
|
||||||
|
cwd: dir,
|
||||||
|
env,
|
||||||
|
stderr: "pipe",
|
||||||
|
stdout: "pipe",
|
||||||
|
},
|
||||||
|
);
|
||||||
|
const text = await readableStreamToText(proc.stderr);
|
||||||
|
const exitCode = await proc.exited;
|
||||||
|
if (exitCode !== 0) {
|
||||||
|
throw new Error(text);
|
||||||
|
}
|
||||||
|
const content = await readFile(stateFile, "utf8");
|
||||||
|
await unlink(stateFile);
|
||||||
|
return JSON.parse(content);
|
||||||
|
};
|
||||||
|
|
||||||
|
// runTerraformInit runs terraform init in the given directory.
|
||||||
|
export const runTerraformInit = async (dir: string) => {
|
||||||
|
const proc = spawn(["terraform", "init"], {
|
||||||
|
cwd: dir,
|
||||||
|
});
|
||||||
|
const text = await readableStreamToText(proc.stdout);
|
||||||
|
const exitCode = await proc.exited;
|
||||||
|
if (exitCode !== 0) {
|
||||||
|
throw new Error(text);
|
||||||
|
}
|
||||||
|
};
|
||||||
7
tsconfig.json
Normal file
7
tsconfig.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "esnext",
|
||||||
|
"module": "esnext",
|
||||||
|
"types": ["bun-types"]
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -17,16 +17,16 @@ variable "agent_id" {
|
|||||||
data "coder_workspace" "me" {}
|
data "coder_workspace" "me" {}
|
||||||
|
|
||||||
resource "coder_app" "vscode" {
|
resource "coder_app" "vscode" {
|
||||||
agent_id = var.agent_id
|
agent_id = var.agent_id
|
||||||
external = true
|
external = true
|
||||||
icon = "/icons/code.svg"
|
icon = "/icons/code.svg"
|
||||||
slug = "vscode"
|
slug = "vscode"
|
||||||
url = join("", [
|
url = join("", [
|
||||||
"vscode://coder.coder-remote/open?owner=",
|
"vscode://coder.coder-remote/open?owner=",
|
||||||
data.coder_workspace.me.owner,
|
data.coder_workspace.me.owner,
|
||||||
"&workspace=",
|
"&workspace=",
|
||||||
data.coder_workspace.me.name,
|
data.coder_workspace.me.name,
|
||||||
"&token=",
|
"&token=",
|
||||||
data.coder_workspace.me.owner_session_token,
|
data.coder_workspace.me.owner_session_token,
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user