-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
38 lines (28 loc) · 826 Bytes
/
variables.tf
File metadata and controls
38 lines (28 loc) · 826 Bytes
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
variable "audit_firehose_delivery_stream_name" {
description = "audit firehose delivery stream name"
type = string
}
variable "audit_firehose_role" {
description = "audit firehose role"
type = any
}
variable "s3_audit_bucket_arn" {
description = "s3 audit bucket arn"
type = string
}
variable "firehose_cloud_watch_log_group_name" {
description = "kinesis cloud watch log group name"
type = string
}
variable "firehose_cloud_watch_log_stream" {
description = "kinesis cloud watch log stream"
type = string
}
variable "eligibility_lambda_role_arn" {
description = "iam role of eligibility lambda"
type = any
}
variable "kinesis_source_stream_arn" {
description = "the arn of the kinesis data stream the lambda puts records to"
type = any
}