File tree Expand file tree Collapse file tree 4 files changed +14
-7
lines changed
nataindata/modules/apache-airflow Expand file tree Collapse file tree 4 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,10 @@ A module that adds Apache Airflow in your Coder template.
1414
1515``` tf
1616module "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}
Original file line number Diff line number Diff line change @@ -45,8 +45,9 @@ A example with all available options:
4545
4646``` tf
4747module "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"
Original file line number Diff line number Diff line change @@ -80,8 +80,10 @@ Show only gpu1 types
8080
8181``` tf
8282module "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"]
Original file line number Diff line number Diff line change @@ -77,7 +77,9 @@ Hide the Switzerland zones Geneva and Zurich
7777
7878``` tf
7979module "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}
You can’t perform that action at this time.
0 commit comments