generated from cloudposse/terraform-example-module
-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathvariables.tf
62 lines (53 loc) · 1.84 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
61
62
variable "region" {
type = string
description = "AWS Region"
}
variable "create_iam_role" {
description = "Flag to indicate whether an IAM Role should be created to grant the proper permissions for AWS Config"
type = bool
default = false
}
variable "create_sns_topic" {
description = <<-DOC
Flag to indicate whether an SNS topic should be created for notifications
If you want to send findings to a new SNS topic, set this to true and provide a valid configuration for subscribers
DOC
type = bool
default = false
}
variable "force_destroy" {
type = bool
description = "A boolean that indicates all objects should be deleted from the bucket so that the bucket can be destroyed without error. These objects are not recoverable"
default = false
}
variable "managed_rules" {
description = <<-DOC
A list of AWS Managed Rules that should be enabled on the account.
See the following for a list of possible rules to enable:
https://docs.aws.amazon.com/config/latest/developerguide/managed-rules-by-aws-config.html
DOC
type = map(object({
description = string
identifier = string
input_parameters = any
tags = map(string)
enabled = bool
}))
default = {}
}
variable "parameter_overrides" {
type = map(map(string))
description = <<-DOC
Map of parameters for interpolation within the YAML config templates
For example, to override the maxCredentialUsageAge parameter in the access-keys-rotated.yaml rule, you would specify
the following:
parameter_overrides = {
"access-keys-rotated" : { maxCredentialUsageAge : "120" }
}
DOC
default = {}
}
variable "global_resource_collector_region" {
description = "The region that collects AWS Config data for global resources such as IAM"
type = string
}