-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
63 lines (52 loc) · 1.54 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
variable "heimdall_public" {
description = "Set this to 'true' if results should be visible by anyone in Heimdall"
type = string
default = "false"
}
variable "heimdall_url" {
description = "The url to the Heimdall server in http://... format"
type = string
}
variable "heimdall_user" {
description = "The Heimdall user's email used to log in"
type = string
}
variable "heimdall_password" {
description = "The Heimdall user's password used to log in"
type = string
sensitive = true
}
variable "results_bucket_id" {
description = "The S3 bucket id/name where results will be placed and processed"
type = string
}
variable "results_bucket_source_account_id" {
description = "The AWS account ID (without a hyphen) of the results S3 bucket source owner."
type = string
default = null
}
variable "cloudwatch_logs_kms_key_id" {
description = "The ARN of the KMS key to use for lambda log encryption."
type = string
default = null
}
variable "subnet_ids" {
description = "The subnet ids to deploy the lambda to."
type = list(string)
default = null
}
variable "security_groups" {
description = "The security groups to assign to the lambda."
type = list(string)
default = null
}
variable "image_version" {
description = "The image and tag of the lambda docker image to deploy"
type = string
default = null
}
variable "lambda_name" {
description = "The name of the lambda function"
type = string
default = "ServerlessHeimdallPusher"
}