-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathvariables.tf
More file actions
192 lines (186 loc) · 4.14 KB
/
variables.tf
File metadata and controls
192 lines (186 loc) · 4.14 KB
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
########
# Build
########
# @label "Git URL"
# @group "Build"
variable "git_url" {
type = string
description = "URL to the source code repository."
}
# @label "Git Branch"
# @group "Build"
variable "git_branch" {
type = string
default = "main"
description = "Branch of the repository to clone."
}
# @label "Git Authentication"
# @group "Build"
variable "git_auth" {
type = bool
default = false
}
# @label "Git Username"
# @group "Build"
# @show_if "git_auth=true"
variable "git_username" {
type = string
default = null
sensitive = true
description = "Username for cloning the git repository."
}
# @label "Git Password"
# @group "Build"
# @show_if "git_auth=true"
variable "git_password" {
type = string
default = null
sensitive = true
description = "Password for cloning the git repository."
}
# @label "Sub Path"
# @group "Build"
variable "git_path" {
type = string
default = null
description = "Path to the source code."
}
# @label "Dockerfile Path"
# @group "Build"
variable "dockerfile" {
type = string
default = "Dockerfile"
description = "Path to the Dockerfile."
}
# @label "Registry Authentication"
# @group "Build"
variable "registry_auth" {
type = bool
default = false
}
# @label "Registry Username"
# @group "Build"
# @show_if "registry_auth=true"
variable "registry_username" {
type = string
default = null
sensitive = true
description = "Username for the image registry."
}
# @label "Registry Password"
# @group "Build"
# @show_if "registry_auth=true"
variable "registry_password" {
type = string
default = null
sensitive = true
description = "Password for the image registry."
}
# @label "Image Name"
# @group "Build"
variable "image" {
type = string
description = "Name of the image to be built and deployed."
}
########
# Deploy
########
# @label "Replicas"
# @group "Deploy/Basic"
variable "replicas" {
type = number
description = "Count of pods"
default = 1
}
# @label "Ports"
# @group "Deploy/Basic"
variable "ports" {
type = list(number)
description = "Service ports to expose"
default = [80]
}
# @label "Environment Variables"
# @group "Deploy/Basic"
variable "env" {
type = map(string)
description = "Name and value pairs to set as the environment variables"
default = {}
}
# @group "Deploy/Resources"
# @label "CPU Request"
variable "request_cpu" {
type = string
description = "CPU request. e.g. 0.5, 1, 2"
default = "0.1"
}
# @group "Deploy/Resources"
# @label "Memory Request"
variable "request_memory" {
type = string
description = "Memory request. e.g. 128Mi, 512Mi, 1Gi, 2Gi, 4Gi"
default = "128Mi"
}
# @group "Deploy/Resources"
# @label "CPU Limit"
variable "limit_cpu" {
type = string
description = "CPU limit. e.g. 0.5, 1, 2"
default = ""
}
# @group "Deploy/Resources"
# @label "Memory Limit"
variable "limit_memory" {
type = string
description = "Memory limit. e.g. 128Mi, 512Mi, 1Gi, 2Gi, 4Gi"
default = ""
}
# @group "Deploy/Advanced"
# @label "Namespace"
variable "namespace" {
type = string
description = "Namespace to deploy. Auto-generated if empty."
default = ""
}
# @group "Deploy/Advanced"
# @label "Deployment Name"
variable "name" {
type = string
description = "Name of the deployment resource. Auto-generated if empty."
default = ""
}
###############
# Walrus metadata
###############
# @hidden
variable "walrus_metadata_service_name" {
type = string
description = "Walrus metadata service name."
default = ""
}
# @hidden
variable "walrus_metadata_namespace_name" {
type = string
description = "Walrus metadata namespace name."
default = ""
}
# @hidden
variable "context" {
description = <<-EOF
Receive contextual information. When Walrus deploys, Walrus will inject specific contextual information into this field.
Examples:
```
context:
project:
name: string
id: string
environment:
name: string
id: string
resource:
name: string
id: string
```
EOF
type = map(any)
default = {}
}