This repository was archived by the owner on Mar 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
142 lines (124 loc) · 5.24 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# 💐💚 coder-images: Optimized, and easy Docker images and Coder templates to use in your everyday work!
# Copyright (c) 2022-2023 Noel <cutie@floofy.dev>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
data "coder_parameter" "workspace" {
description = "Workspace directory to use to where we clone a Git repository to, or a empty directory if `git_url` is not specified."
default = "$HOME/workspace"
mutable = false
type = "string"
name = "Workspace"
icon = "${data.coder_workspace.me.access_url}/icon/folder.svg"
}
data "coder_parameter" "volume_dir" {
description = "Directory to persist for the Docker volume"
default = "/home/noel"
mutable = false
type = "string"
name = "Volume Persistence Directory"
icon = "${data.coder_workspace.me.access_url}/icon/folder.svg"
}
data "coder_parameter" "base_docker_image" {
description = "What base Docker image to use? These are dependent of Noel's Coder images available. Use the `custom_docker_image` option to use a custom one."
default = "base"
mutable = true
icon = "${data.coder_workspace.me.access_url}/icon/docker.png"
name = "Base Docker Image"
type = "string"
option {
name = "Custom"
value = ""
}
option {
icon = "${data.coder_workspace.me.access_url}/icon/docker.png"
name = "Base (ghcr.io/auguwu/coder-images/base)"
value = "base"
}
option {
icon = "${data.coder_workspace.me.access_url}/icon/java.svg"
name = "Java (ghcr.io/auguwu/coder-images/java)"
value = "java"
}
option {
name = "Go (ghcr.io/auguwu/coder-images/golang)"
icon = "https://go.dev/blog/go-brand/Go-Logo/SVG/Go-Logo_Aqua.svg"
value = "golang"
}
option {
icon = "${data.coder_workspace.me.access_url}/icon/node.svg"
name = "Node.js (ghcr.io/auguwu/coder-images/node)"
value = "node"
}
option {
icon = "https://user-images.githubusercontent.com/709451/182802334-d9c42afe-f35d-4a7b-86ea-9985f73f20c3.png"
name = "Bun (ghcr.io/auguwu/coder-images/bun)"
value = "bun"
}
option {
icon = "https://raw.githubusercontent.com/dotnet/brand/main/logo/dotnet-logo.svg"
name = ".NET Core (ghcr.io/auguwu/coder-images/dotnet)"
value = "dotnet"
}
option {
icon = "https://raw.githubusercontent.com/rust-lang/rust-artwork/master/logo/rust-logo-128x128.png"
name = "Rust (ghcr.io/auguwu/coder-images/rust)"
value = "rust"
}
}
data "coder_parameter" "custom_docker_image" {
description = "Custom Docker image to use if the custom option was set."
mutable = true
default = ""
type = "string"
name = "Custom Docker Image"
icon = "${data.coder_workspace.me.access_url}/icon/docker.png"
validation {
error = "Invalid registry image"
# Grabbed from https://github.com/distribution/distribution/blob/main/reference/regexp.go#L31-L34
regex = "(^$)|^((?:(?:[a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9])(?:(?:\\.(?:[a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]))+)?(?::[0-9]+)?/)?[a-z0-9]+(?:(?:(?:[._]|__|[-]*)[a-z0-9]+)+)?(?:(?:/[a-z0-9]+(?:(?:(?:[._]|__|[-]*)[a-z0-9]+)+)?)+)?)(?::([\\w][\\w.-]{0,127}))?(?:@([A-Za-z][A-Za-z0-9]*(?:[-_+.][A-Za-z][A-Za-z0-9]*)*[:][[:xdigit:]]{32,}))?$"
}
}
data "coder_parameter" "git_repository" {
description = "Git repository URL to clone into the workspace directory. This can be changed if wished."
mutable = true
default = ""
type = "string"
name = "Git Repository"
}
data "coder_parameter" "git_branch" {
description = "A valid branch available on the Git repository to clone from. By default, this will clone from the default branch."
mutable = false
default = ""
type = "string"
name = "Git Branch"
}
data "coder_parameter" "dotfiles" {
description = "Git repository URL that holds your files that start with a '.'"
mutable = true
default = ""
type = "string"
name = "Dotfiles"
}
data "coder_parameter" "docker_network_name" {
description = "Name for the Docker network you wish to expose. This is useful for .coder/docker-compose.yml to link services between."
default = "fluff"
mutable = false
type = "string"
name = "Docker Network Name"
}