-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
54 lines (44 loc) · 1.2 KB
/
variables.tf
File metadata and controls
54 lines (44 loc) · 1.2 KB
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 "eligibility_lambda_role_arn" {
description = "lambda read role arn for dynamodb"
type = string
}
variable "lambda_func_name" {
description = "Name of the Lambda function"
type = string
}
variable "vpc_intra_subnets" {
description = "vpc private subnets for lambda"
type = list(string)
}
variable "security_group_ids" {
description = "security groups for lambda"
type = list(string)
}
variable "file_name" {
description = "path of the the zipped lambda"
type = string
}
variable "handler" {
description = "lambda handler name"
type = string
}
variable "eligibility_rules_bucket_name" {
description = "campaign config rules bucket name"
type = string
}
variable "eligibility_status_table_name" {
description = "eligibility datastore table name"
type = string
}
variable "kinesis_audit_stream_to_s3_name" {
description = "kinesis audit stream to s3 name"
type = string
}
variable "log_level" {
description = "log level"
type = string
}
variable "enable_xray_patching"{
description = "flag to enable xray tracing, which puts an entry for dynamodb, s3 and firehose in trace map"
type = string
}