File tree Expand file tree Collapse file tree 6 files changed +27
-33
lines changed Expand file tree Collapse file tree 6 files changed +27
-33
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ display_name: Nataindata
3
3
bio : Data engineer
4
4
github : nataindata
5
5
website : https://www.nataindata.com
6
- status : partner
6
+ status : community
7
7
---
Original file line number Diff line number Diff line change @@ -14,11 +14,9 @@ A module that adds Apache Airflow in your Coder template.
14
14
15
15
``` tf
16
16
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"
22
20
agent_id = coder_agent.main.id
23
21
}
24
22
```
Original file line number Diff line number Diff line change @@ -9,14 +9,13 @@ tags: [helper]
9
9
10
10
# nodejs
11
11
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.
13
13
14
14
``` tf
15
15
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"
20
19
agent_id = coder_agent.example.id
21
20
}
22
21
```
@@ -28,8 +27,8 @@ This installs multiple versions of Node.js:
28
27
``` tf
29
28
module "nodejs" {
30
29
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 "
33
32
agent_id = coder_agent.example.id
34
33
node_versions = [
35
34
"18",
@@ -47,8 +46,8 @@ A example with all available options:
47
46
``` tf
48
47
module "nodejs" {
49
48
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 "
52
51
agent_id = coder_agent.example.id
53
52
nvm_version = "v0.39.7"
54
53
nvm_install_prefix = "/opt/nvm"
Original file line number Diff line number Diff line change @@ -16,11 +16,9 @@ Customize the preselected parameter value:
16
16
17
17
``` tf
18
18
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"
24
22
default = "standard.medium"
25
23
}
26
24
@@ -48,8 +46,8 @@ Change the display name a type using the corresponding maps:
48
46
``` tf
49
47
module "exoscale-instance-type" {
50
48
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 "
53
51
default = "standard.medium"
54
52
55
53
custom_names = {
@@ -83,8 +81,8 @@ Show only gpu1 types
83
81
``` tf
84
82
module "exoscale-instance-type" {
85
83
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 "
88
86
default = "gpu.large"
89
87
type_category = ["gpu"]
90
88
exclude = [
Original file line number Diff line number Diff line change @@ -16,11 +16,9 @@ Customize the preselected parameter value:
16
16
17
17
``` tf
18
18
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"
24
22
default = "ch-dk-2"
25
23
}
26
24
@@ -47,8 +45,8 @@ Change the display name and icon for a zone using the corresponding maps:
47
45
``` tf
48
46
module "exoscale-zone" {
49
47
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 "
52
50
default = "at-vie-1"
53
51
54
52
custom_names = {
@@ -79,8 +77,9 @@ Hide the Switzerland zones Geneva and Zurich
79
77
80
78
``` tf
81
79
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"
84
83
exclude = ["ch-gva-2", "ch-dk-2"]
85
84
}
86
85
You can’t perform that action at this time.
0 commit comments