From 1355ea4b609cba2a282c8baf0f1283419c21e94a Mon Sep 17 00:00:00 2001 From: M Atif Ali Date: Thu, 15 May 2025 08:04:28 -0700 Subject: [PATCH] chore: update module sources for community modules (#93) --- .../{coder => nataindata}/.images/airflow.png | Bin registry/nataindata/README.md | 2 +- .../modules/apache-airflow/README.md | 8 +++----- registry/thezoker/modules/nodejs/README.md | 17 ++++++++--------- .../modules/exoscale-instance-type/README.md | 16 +++++++--------- .../whizus/modules/exoscale-zone/README.md | 17 ++++++++--------- 6 files changed, 27 insertions(+), 33 deletions(-) rename registry/{coder => nataindata}/.images/airflow.png (100%) diff --git a/registry/coder/.images/airflow.png b/registry/nataindata/.images/airflow.png similarity index 100% rename from registry/coder/.images/airflow.png rename to registry/nataindata/.images/airflow.png diff --git a/registry/nataindata/README.md b/registry/nataindata/README.md index 5f291817..ddc5095f 100644 --- a/registry/nataindata/README.md +++ b/registry/nataindata/README.md @@ -3,5 +3,5 @@ display_name: Nataindata bio: Data engineer github: nataindata website: https://www.nataindata.com -status: partner +status: community --- diff --git a/registry/nataindata/modules/apache-airflow/README.md b/registry/nataindata/modules/apache-airflow/README.md index b4e4019f..4e0ae1c2 100644 --- a/registry/nataindata/modules/apache-airflow/README.md +++ b/registry/nataindata/modules/apache-airflow/README.md @@ -14,11 +14,9 @@ A module that adds Apache Airflow in your Coder template. ```tf module "airflow" { - count = data.coder_workspace.me.start_count - # Switch to "registry.coder.com/nataindata/apache-airflow/coder" on the next - # release - source = "registry.coder.com/coder/apache-airflow/coder" - version = "1.0.13" + count = data.coder_workspace.me.start_count + source = "registry.coder.com/nataindata/apache-airflow/coder" + version = "1.0.14" agent_id = coder_agent.main.id } ``` diff --git a/registry/thezoker/modules/nodejs/README.md b/registry/thezoker/modules/nodejs/README.md index df3e0927..51db6f35 100644 --- a/registry/thezoker/modules/nodejs/README.md +++ b/registry/thezoker/modules/nodejs/README.md @@ -9,14 +9,13 @@ tags: [helper] # nodejs -Automatically installs [Node.js](https://github.com/nodejs/node) via [nvm](https://github.com/nvm-sh/nvm). It can also install multiple versions of node and set a default version. If no options are specified, the latest version is installed. +Automatically installs [Node.js](https://github.com/nodejs/node) via [`nvm`](https://github.com/nvm-sh/nvm). It can also install multiple versions of node and set a default version. If no options are specified, the latest version is installed. ```tf module "nodejs" { - count = data.coder_workspace.me.start_count - # Switch to "registry.coder.com/thezoker/nodejs/coder" for the next release - source = "registry.coder.com/coder/nodejs/coder" - version = "1.0.10" + count = data.coder_workspace.me.start_count + source = "registry.coder.com/thezoker/nodejs/coder" + version = "1.0.11" agent_id = coder_agent.example.id } ``` @@ -28,8 +27,8 @@ This installs multiple versions of Node.js: ```tf module "nodejs" { count = data.coder_workspace.me.start_count - source = "registry.coder.com/coder/nodejs/coder" - version = "1.0.10" + source = "registry.coder.com/thezoker/nodejs/coder" + version = "1.0.11" agent_id = coder_agent.example.id node_versions = [ "18", @@ -47,8 +46,8 @@ A example with all available options: ```tf module "nodejs" { count = data.coder_workspace.me.start_count - source = "registry.coder.com/coder/nodejs/coder" - version = "1.0.10" + source = "registry.coder.com/thezoker/nodejs/coder" + version = "1.0.11" agent_id = coder_agent.example.id nvm_version = "v0.39.7" nvm_install_prefix = "/opt/nvm" diff --git a/registry/whizus/modules/exoscale-instance-type/README.md b/registry/whizus/modules/exoscale-instance-type/README.md index 71b09e68..7f590c47 100644 --- a/registry/whizus/modules/exoscale-instance-type/README.md +++ b/registry/whizus/modules/exoscale-instance-type/README.md @@ -16,11 +16,9 @@ Customize the preselected parameter value: ```tf module "exoscale-instance-type" { - count = data.coder_workspace.me.start_count - # Switch to "registry.coder.com/whizus/exoscale-instance-type/coder" for the - # next release - source = "registry.coder.com/coder/exoscale-instance-type/coder" - version = "1.0.12" + count = data.coder_workspace.me.start_count + source = "registry.coder.com/whizus/exoscale-instance-type/coder" + version = "1.0.13" default = "standard.medium" } @@ -48,8 +46,8 @@ Change the display name a type using the corresponding maps: ```tf module "exoscale-instance-type" { count = data.coder_workspace.me.start_count - source = "registry.coder.com/coder/exoscale-instance-type/coder" - version = "1.0.12" + source = "registry.coder.com/whizus/exoscale-instance-type/coder" + version = "1.0.13" default = "standard.medium" custom_names = { @@ -83,8 +81,8 @@ Show only gpu1 types ```tf module "exoscale-instance-type" { count = data.coder_workspace.me.start_count - source = "registry.coder.com/coder/exoscale-instance-type/coder" - version = "1.0.12" + source = "registry.coder.com/whizus/exoscale-instance-type/coder" + version = "1.0.13" default = "gpu.large" type_category = ["gpu"] exclude = [ diff --git a/registry/whizus/modules/exoscale-zone/README.md b/registry/whizus/modules/exoscale-zone/README.md index 5b3a36a7..944e87b1 100644 --- a/registry/whizus/modules/exoscale-zone/README.md +++ b/registry/whizus/modules/exoscale-zone/README.md @@ -16,11 +16,9 @@ Customize the preselected parameter value: ```tf module "exoscale-zone" { - count = data.coder_workspace.me.start_count - # Switch to "registry.coder.com/whizus/exoscale-zone/coder" for the next - # release - source = "registry.coder.com/coder/exoscale-zone/coder" - version = "1.0.12" + count = data.coder_workspace.me.start_count + source = "registry.coder.com/whizus/exoscale-zone/coder" + version = "1.0.13" default = "ch-dk-2" } @@ -47,8 +45,8 @@ Change the display name and icon for a zone using the corresponding maps: ```tf module "exoscale-zone" { count = data.coder_workspace.me.start_count - source = "registry.coder.com/coder/exoscale-zone/coder" - version = "1.0.12" + source = "registry.coder.com/whizus/exoscale-zone/coder" + version = "1.0.13" default = "at-vie-1" custom_names = { @@ -79,8 +77,9 @@ Hide the Switzerland zones Geneva and Zurich ```tf module "exoscale-zone" { - source = "registry.coder.com/coder/exoscale-zone/coder" - version = "1.0.12" + count = data.coder_workspace.me.start_count + source = "registry.coder.com/whizus/exoscale-zone/coder" + version = "1.0.13" exclude = ["ch-gva-2", "ch-dk-2"] }