Skip to content

Commit fc69dae

Browse files
committed
fix: update import URLs for legacy modules
1 parent 9a086db commit fc69dae

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ 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-
source = "registry.coder.com/nataindata/apache-airflow/coder"
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"
1921
version = "1.0.13"
2022
agent_id = coder_agent.main.id
2123
}

registry/thezoker/modules/nodejs/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ A example with all available options:
4545

4646
```tf
4747
module "nodejs" {
48-
count = data.coder_workspace.me.start_count
49-
source = "registry.coder.com/thezoker/nodejs/coder"
48+
count = data.coder_workspace.me.start_count
49+
# Switch to "registry.coder.com/thezoker/nodejs/coder" for the next release
50+
source = "registry.coder.com/coder/nodejs/coder"
5051
version = "1.0.10"
5152
agent_id = coder_agent.example.id
5253
nvm_version = "v0.39.7"

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,10 @@ Show only gpu1 types
8080

8181
```tf
8282
module "exoscale-instance-type" {
83-
count = data.coder_workspace.me.start_count
84-
source = "registry.coder.com/whizus/exoscale-instance-type/coder"
83+
count = data.coder_workspace.me.start_count
84+
# Switch to "registry.coder.com/whizus/exoscale-instance-type/coder" for the
85+
# next release
86+
source = "registry.coder.com/coder/exoscale-instance-type/coder"
8587
version = "1.0.12"
8688
default = "gpu.large"
8789
type_category = ["gpu"]

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ Hide the Switzerland zones Geneva and Zurich
7777

7878
```tf
7979
module "exoscale-zone" {
80-
source = "registry.coder.com/whizus/exoscale-zone/coder"
80+
# Switch to "registry.coder.com/whizus/exoscale-zone/coder" for the next
81+
# release
82+
source = "registry.coder.com/coder/exoscale-zone/coder"
8183
version = "1.0.12"
8284
exclude = ["ch-gva-2", "ch-dk-2"]
8385
}

0 commit comments

Comments
 (0)