-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathvariables.tf
60 lines (49 loc) · 1.16 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
53
54
55
56
57
58
59
60
variable "cloudwatch_stream_name" {
description = ""
type = string
}
variable "log_bucket" {
description = ""
type = string
}
variable "log_bucket_logging" {
description = "Access bucket logging."
type = string
default = null
}
//If you set this as the default its going to make it
//hard to delete
variable "log_bucket_mfa_delete" {
default = "Disabled"
type = string
}
variable "filter_pattern" {
type = string
description = "description"
}
variable "region_desc" {
description = "A string used to help name stuff doesnt have to be a region"
type = string
}
variable "log_group_name" {
description = "A log group to stream"
type = list(any)
}
variable "sse_algorithm" {
type = string
description = "The Encryption algorithm to use"
default = "aws:kms"
}
variable "kms_master_key_id" {
type = string
description = "The KMS key id to use for Encryption"
}
variable "server_side_encryption" {
type = bool
description = "Encrypt at rest"
default = true
}
variable "s3_events" {
description = "Events to notify on"
default = ["s3:ObjectRemoved:*"]
}