-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables-common.tf
241 lines (189 loc) · 5.43 KB
/
variables-common.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
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
data "aws_caller_identity" "current" {}
data "aws_region" "current" {}
variable "terraform_remote_state_bucket_name" {
type = string
description = "Bucket name storing the deployment-common tfstate"
sensitive = false
}
variable "cell_svc_bucket_name" {
type = string
sensitive = false
}
variable "cell_svc_docker_image_url" {
type = string
sensitive = false
}
variable "ml_paper_bucket_name" {
type = string
sensitive = false
}
variable "ml_neuroagent_bucket_name" {
type = string
sensitive = false
}
variable "nexus_domain_name" {
type = string
sensitive = false
}
variable "nexus_obp_bucket_name" {
type = string
sensitive = false
}
variable "nexus_ship_bucket_name" {
type = string
sensitive = false
}
variable "nexus_openscience_bucket_name" {
type = string
sensitive = false
}
variable "nexus_az_letter_id" {
type = string
}
variable "ec_apikey2" {
type = string
sensitive = true
}
### ME-Model analysis ###
variable "me_model_analysis_docker_image_url" {
type = string
description = "docker image for the ME-Model analysis"
}
### Core Web App ###
variable "core_web_app_docker_image_url" {
type = string
description = "docker image for the core-web-app"
sensitive = false
}
variable "core_web_app_next_docker_image_url" {
default = null
type = string
description = "docker image for the core-web-app-next"
sensitive = false
}
variable "core_web_app_deployment_env" {
default = "production"
type = string
description = "env core-web-app is deployed <staging|production>"
sensitive = false
}
variable "core_web_app_next_public_matomo_site_id" {
type = string
description = "matomo site id <staging|production>"
sensitive = false
}
### BlueNaaS service ###
variable "bluenaas_docker_image_url" {
type = string
description = "Docker image URL for the blue-naas service"
}
### Virtual Lab Manager service ###
variable "virtual_lab_manager_base_path" {
default = "/api/virtual-lab-manager"
type = string
description = "The base path for the virtual lab manager"
sensitive = false
}
variable "virtual_lab_manager_log_group_name" {
default = "virtual_lab_manager"
type = string
description = "The log name within cloudwatch for the virtual lab manager"
sensitive = false
}
variable "virtual_lab_manager_docker_image_url" {
type = string
description = "Docker image for the virtual lab manager"
sensitive = false
}
variable "virtual_lab_manager_task_size" {
type = object({
cpu = any
memory = any
})
description = "CPU and memory limit for ECS task (number or string format) for virtual lab manager"
}
### Accounting service ###
variable "accounting_svc_docker_image_url" {
type = string
description = "Docker image for the accounting service"
}
variable "accounting_svc_base_path" {
default = "/api/accounting"
type = string
description = "The base path for the accounting service"
}
variable "coreservices_public_key" {
type = string
description = "Public SSH key for the coreservices team"
sensitive = true
}
### Nexus ###
variable "nise_dockerhub_password" {
type = string
description = "Password for the NISE dockerhub access. Set via TF_VAR_nise_dockerhub_password variable."
sensitive = true
}
### BlueNaaS ###
variable "bluenaas_task_size" {
type = object({
cpu = any
memory = any
})
description = "CPU and memory limit for ECS task (number or string format)"
}
### Keycloak ###
variable "keycloak_task_size" {
type = object({
cpu = number
memory = number
})
description = "CPU and memory limit for Keycloak's ECS task (number or string format)"
}
variable "jupyterhub_ec2_type" {
type = string
description = "JupyterHub service Amazon EC2 Instance type"
default = "t3.small"
}
### HPC ###
variable "hpc_resource_provisioner_container_version" {
type = string
description = "Version of hpc-resource-provisioner to deploy"
}
variable "hpc_resource_provisioner_sbo_nexusdata_bucket" {
type = string
description = "S3 bucket in which SBO Nexus data lives. Includes s3:// prefix and sub-path, if any"
}
variable "hpc_resource_provisioner_containers_bucket" {
type = string
description = "S3 bucket in which containers can be found. Includes s3:// prefix and sub-path, if any"
}
variable "hpc_resource_provisioner_scratch_bucket" {
type = string
description = "S3 bucket in which scratch space lives. Includes s3:// prefix and sub-path, if any"
}
### entitycore ###
variable "entitycore_svc_s3_bucket_name" {
type = string
description = "S3 bucket name in which entitycore data lives."
}
variable "entitycore_svc_s3_bucket_allowed_origins" {
type = list(string)
description = "Allowed origins for the entitycore service"
}
variable "entitycore_svc_image_url" {
type = string
description = "Image URL for entitycore service."
}
variable "thumbnail_generation_api_docker_image_url" {
type = string
description = "Docker image for the thumbnail generation api"
sensitive = false
}
variable "obi_one_docker_image_url" {
type = string
description = "Docker image URL for obi-one service."
}
variable "obi_generative_gui_docker_image_url" {
type = string
description = "Docker image URL for obi-generative-gui service."
}