Skip to content

Commit 1355ea4

Browse files
authored
chore: update module sources for community modules (#93)
1 parent 6c7f06e commit 1355ea4

File tree

6 files changed

+27
-33
lines changed

6 files changed

+27
-33
lines changed

registry/nataindata/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ display_name: Nataindata
33
bio: Data engineer
44
github: nataindata
55
website: https://www.nataindata.com
6-
status: partner
6+
status: community
77
---

registry/nataindata/modules/apache-airflow/README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,9 @@ A module that adds Apache Airflow in your Coder template.
1414

1515
```tf
1616
module "airflow" {
17-
count = data.coder_workspace.me.start_count
18-
# Switch to "registry.coder.com/nataindata/apache-airflow/coder" on the next
19-
# release
20-
source = "registry.coder.com/coder/apache-airflow/coder"
21-
version = "1.0.13"
17+
count = data.coder_workspace.me.start_count
18+
source = "registry.coder.com/nataindata/apache-airflow/coder"
19+
version = "1.0.14"
2220
agent_id = coder_agent.main.id
2321
}
2422
```

registry/thezoker/modules/nodejs/README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,13 @@ tags: [helper]
99

1010
# nodejs
1111

12-
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.
12+
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.
1313

1414
```tf
1515
module "nodejs" {
16-
count = data.coder_workspace.me.start_count
17-
# Switch to "registry.coder.com/thezoker/nodejs/coder" for the next release
18-
source = "registry.coder.com/coder/nodejs/coder"
19-
version = "1.0.10"
16+
count = data.coder_workspace.me.start_count
17+
source = "registry.coder.com/thezoker/nodejs/coder"
18+
version = "1.0.11"
2019
agent_id = coder_agent.example.id
2120
}
2221
```
@@ -28,8 +27,8 @@ This installs multiple versions of Node.js:
2827
```tf
2928
module "nodejs" {
3029
count = data.coder_workspace.me.start_count
31-
source = "registry.coder.com/coder/nodejs/coder"
32-
version = "1.0.10"
30+
source = "registry.coder.com/thezoker/nodejs/coder"
31+
version = "1.0.11"
3332
agent_id = coder_agent.example.id
3433
node_versions = [
3534
"18",
@@ -47,8 +46,8 @@ A example with all available options:
4746
```tf
4847
module "nodejs" {
4948
count = data.coder_workspace.me.start_count
50-
source = "registry.coder.com/coder/nodejs/coder"
51-
version = "1.0.10"
49+
source = "registry.coder.com/thezoker/nodejs/coder"
50+
version = "1.0.11"
5251
agent_id = coder_agent.example.id
5352
nvm_version = "v0.39.7"
5453
nvm_install_prefix = "/opt/nvm"

registry/whizus/modules/exoscale-instance-type/README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@ Customize the preselected parameter value:
1616

1717
```tf
1818
module "exoscale-instance-type" {
19-
count = data.coder_workspace.me.start_count
20-
# Switch to "registry.coder.com/whizus/exoscale-instance-type/coder" for the
21-
# next release
22-
source = "registry.coder.com/coder/exoscale-instance-type/coder"
23-
version = "1.0.12"
19+
count = data.coder_workspace.me.start_count
20+
source = "registry.coder.com/whizus/exoscale-instance-type/coder"
21+
version = "1.0.13"
2422
default = "standard.medium"
2523
}
2624
@@ -48,8 +46,8 @@ Change the display name a type using the corresponding maps:
4846
```tf
4947
module "exoscale-instance-type" {
5048
count = data.coder_workspace.me.start_count
51-
source = "registry.coder.com/coder/exoscale-instance-type/coder"
52-
version = "1.0.12"
49+
source = "registry.coder.com/whizus/exoscale-instance-type/coder"
50+
version = "1.0.13"
5351
default = "standard.medium"
5452
5553
custom_names = {
@@ -83,8 +81,8 @@ Show only gpu1 types
8381
```tf
8482
module "exoscale-instance-type" {
8583
count = data.coder_workspace.me.start_count
86-
source = "registry.coder.com/coder/exoscale-instance-type/coder"
87-
version = "1.0.12"
84+
source = "registry.coder.com/whizus/exoscale-instance-type/coder"
85+
version = "1.0.13"
8886
default = "gpu.large"
8987
type_category = ["gpu"]
9088
exclude = [

registry/whizus/modules/exoscale-zone/README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@ Customize the preselected parameter value:
1616

1717
```tf
1818
module "exoscale-zone" {
19-
count = data.coder_workspace.me.start_count
20-
# Switch to "registry.coder.com/whizus/exoscale-zone/coder" for the next
21-
# release
22-
source = "registry.coder.com/coder/exoscale-zone/coder"
23-
version = "1.0.12"
19+
count = data.coder_workspace.me.start_count
20+
source = "registry.coder.com/whizus/exoscale-zone/coder"
21+
version = "1.0.13"
2422
default = "ch-dk-2"
2523
}
2624
@@ -47,8 +45,8 @@ Change the display name and icon for a zone using the corresponding maps:
4745
```tf
4846
module "exoscale-zone" {
4947
count = data.coder_workspace.me.start_count
50-
source = "registry.coder.com/coder/exoscale-zone/coder"
51-
version = "1.0.12"
48+
source = "registry.coder.com/whizus/exoscale-zone/coder"
49+
version = "1.0.13"
5250
default = "at-vie-1"
5351
5452
custom_names = {
@@ -79,8 +77,9 @@ Hide the Switzerland zones Geneva and Zurich
7977

8078
```tf
8179
module "exoscale-zone" {
82-
source = "registry.coder.com/coder/exoscale-zone/coder"
83-
version = "1.0.12"
80+
count = data.coder_workspace.me.start_count
81+
source = "registry.coder.com/whizus/exoscale-zone/coder"
82+
version = "1.0.13"
8483
exclude = ["ch-gva-2", "ch-dk-2"]
8584
}
8685

0 commit comments

Comments
 (0)