-
Notifications
You must be signed in to change notification settings - Fork 0
/
locals.tf
16 lines (14 loc) · 867 Bytes
/
locals.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
locals {
/* -------------------------------------------------------------------------- */
/* Lambda */
/* -------------------------------------------------------------------------- */
lambda_file_name = "lambda-package.zip"
lambda_handler_name = "lambda_function.lambda_handler"
lambda_function_timeout = 9
lambda_reserved_concurrent_executions = 2
lambda_runtime_language = "python3.10"
/* -------------------------------------------------------------------------- */
/* Secrets Manager */
/* -------------------------------------------------------------------------- */
secretsmanager_prefix = "devops/iam_rotation/terraform_user_credentials"
}