chore: update module sources for community modules (#93)

This commit is contained in:
M Atif Ali 2025-05-15 08:04:28 -07:00 committed by GitHub
parent 6c7f06e240
commit a4e40f9a5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 27 additions and 33 deletions

View File

Before

Width:  |  Height:  |  Size: 603 KiB

After

Width:  |  Height:  |  Size: 603 KiB

View File

@ -3,5 +3,5 @@ display_name: Nataindata
bio: Data engineer
github: nataindata
website: https://www.nataindata.com
status: partner
status: community
---

View File

@ -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
}
```

View File

@ -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"

View File

@ -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 = [

View File

@ -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"]
}