generated from NHSDigital/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
85 lines (68 loc) · 1.86 KB
/
variables.tf
File metadata and controls
85 lines (68 loc) · 1.86 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
variable "eligibility_lambda_role_arn" {
description = "lambda role arn"
type = string
}
variable "eligibility_lambda_role_name" {
description = "lambda role name"
type = string
}
variable "lambda_func_name" {
description = "Name of the Lambda function"
type = string
}
variable "runtime" {
description = "runtime 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
}
variable "provisioned_concurrency_count" {
description = "Number of prewarmed Lambda instances"
type = number
}
variable "lambda_insights_extension_version" {
description = "version number of LambdaInsightsExtension"
type = number
}
variable "api_domain_name" {
description = "api domain name - env variable for status endpoint response"
type = string
}
variable "hashing_secret_name" {
description = "hashing secret name"
type = string
}