-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
36 lines (30 loc) · 1.44 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
variable "fpjs_get_result_path" {
type = string
description = "request path used to send identification requests (aka FPJS_GET_RESULT_PATH)"
validation {
condition = can(regex("^([a-zA-Z0-9\\-])+$", var.fpjs_get_result_path))
error_message = "value should only consist of alphanumeric values and dashes"
}
}
variable "fpjs_agent_download_path" {
type = string
description = "request path used to send agent download requests (aka FPJS_AGENT_DOWNLOAD_PATH)"
validation {
condition = can(regex("^([a-zA-Z0-9\\-])+$", var.fpjs_agent_download_path))
error_message = "value should only consist of alphanumeric values and dashes"
}
}
variable "fpjs_shared_secret" {
type = string
sensitive = true
description = "shared secret created on the Fingerprint dashboard (aka FPJS_PRE_SHARED_SECRET)"
validation {
condition = can(regex("^([a-zA-Z0-9\\-])+$", var.fpjs_shared_secret))
error_message = "value should only consist of alphanumeric values and dashes"
}
}
variable "fpjs_proxy_lambda_role_permissions_boundary_arn" {
type = string
description = "Permissions boundary ARN for the role assumed by the Proxy lambda. Make sure your permissions boundary allows the function to access the Secrets Manager secret created for the integration (`secretsmanager:GetSecretValue`) and create logs (`logs:CreateLogStream`, `logs:CreateLogGroup`, `logs:PutLogEvents`)."
default = null
}