-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
38 lines (32 loc) · 1.09 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
variable "owner_tag" {
description = "Owner tag applied to all resources, e.g. your username/email"
}
variable "environment_tag" {
description = "Environment tag applied to all resources, and used in some resource names"
default = "miniwdl"
}
variable "s3upload_buckets" {
description = "S3 bucket name(s) for automatic upload of workflow outputs with `miniwdl-aws-submit --s3upload`"
type = list(string)
default = []
}
variable "create_spot_service_roles" {
description = "Create account-wide spot service roles (disable if they already exist)"
type = bool
default = true
}
variable "task_max_vcpus" {
description = "Maximum vCPUs for task compute environment"
type = number
default = 256
}
variable "workflow_max_vcpus" {
description = "Maximum vCPUs for workflow compute environment"
type = number
default = 16
}
variable "enable_task_fallback" {
description = "Enable fallback to EC2 On Demand compute environment after task experiences runtime.preemptible spot interruptions"
type = bool
default = false
}