forked from babbel/terraform-aws-athena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
52 lines (35 loc) · 1.27 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
variable "name" {
type = string
description = "Name used for resources and depending resources."
}
variable "resource_specific_tags" {
description = "Map of tags to assign to specific resources supporting tags. Merged with `tags`."
type = map(map(string))
default = {}
}
variable "selected_engine_version" {
default = "AUTO"
description = "The work group's engine version."
}
variable "tags" {
description = "Map of tags to assign to all resources supporting tags."
type = map(string)
}
variable "workspace_bucket_expiration_days" {
default = 30
description = "The expiration days for objects in the workspace bucket in days. By default objects are expired 30 days after their creation. If set to null, expiration is disabled."
}
variable "workgroup_bucket" {
description = "The name of the bucket to contain the Athena work group's data."
type = string
}
variable "workspace_bytes_scanned_cutoff" {
description = "The upper data usage limit (cutoff) for the amount of bytes a single query in the workgroup is allowed to scan. Defaults to 10 TB."
type = number
default = 10 * 1024 * 1024 * 1024 * 1024 # 10TB
}
variable "force_destroy" {
description = "Whether to force destroy the workgroup and the S3 bucket."
type = bool
default = false
}