-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
54 lines (45 loc) · 1.08 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
variable "snapshot_delivery_frequency" {
type = string
description = "Delivery frequency for AWS Config"
default = "Three_Hours"
}
variable "tags" {
description = "Tags configuration for Cloudwatch"
type = map(string)
default = {
Application = "aws-config"
}
}
variable "s3_bucket_name" {
type = string
description = "S3 Bucket name"
}
variable "s3_version_expiration" {
type = string
description = "Days to expirate the aws config logs on the S3 buckets"
default = "365"
}
variable "sns_topic_arn" {
type = string
description = "SNS Topic to send notifications too (Optional)"
default = null
}
variable "prefix" {
type = string
description = "Prefix to use for naming resources"
default = "aws-config"
}
#IAM
variable "service_linked_role" {
type = bool
description = "Create a service linked role for AWS Config"
default = false
}
variable "iam_role_name" {
type = string
default = "AWSConfigRole"
}
variable "iam_role_path" {
type = string
default = "/service-role/"
}