-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
43 lines (35 loc) · 831 Bytes
/
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
variable "days_to_ia_class" {
type = number
default = 30
description = "Number of days after which data transitions to infrequntenly accessed storage class"
}
variable "days_to_glacier_class" {
type = number
default = 60
description = "Number of days after which data transitions to glacier storage class"
}
variable "custom_bucket_policy" {
type = string
default = ""
}
variable "public_access" {
type = bool
default = false
}
variable "bucket_name" {
type = string
description = "Name of the bucket"
}
variable "bucket_region" {
type = string
description = "Region to create the bucket in"
}
variable "bucket_acl" {
type = string
default = "private"
}
variable "sse_kms_key_arn" {
type = string
default = ""
description = "KMS key arn to be used and SSE key"
}