-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
69 lines (56 loc) · 1.73 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
63
64
65
66
67
68
69
variable "datadog_aws_account" {
description = "The ID of Datadog's AWS account"
default = "464622532012"
}
variable "datadog_external_id" {
description = "The external ID datadog gives you for the cross-account role"
type = "string"
}
variable "enabled" {
description = "Set to false to prevent the module from creating anything"
default = true
}
variable "enable_autoscaling" {
description = "Allow Datadog to trigger autoscaling policies"
default = false
}
variable "enable_cloudtrail" {
description = "Setup Datadog Cloudtrail integration"
default = false
}
variable "enable_logging" {
description = "Setup Datadog Logging integration"
default = false
}
variable "autoscaling_policy_name" {
description = "Datadog autoscaling integration policy name"
default = "DatadogAWSIntegrationAutoscaling"
}
variable "aws_cloudtrail_bucket_arn" {
description = "Cloudtrail S3 logs bucket ARN"
default = ""
}
variable "cloudtrail_policy_name" {
description = "Datadog Cloudtrail integration policy name"
default = "DatadogAWSIntegrationCloudtrailLogBucket"
}
variable "logging_policy_name" {
description = "Datadog Logging integration policy name"
default = "DatadogAWSIntegrationLogging"
}
variable "policy_name" {
description = "The name for the IAM policy created to give Datadog permissions"
default = "DatadogAWSIntegrationPolicy"
}
variable "policies_path" {
description = "Path for IAM policies"
default = "/"
}
variable "role_name" {
description = "The name for the cross-account role Datadog will use to access your account"
default = "DatadogAWSIntegrationRole"
}
variable "role_path" {
description = "Path for IAM role"
default = "/"
}