-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
104 lines (87 loc) · 2.11 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
variable "service_name" {
default = "transcribe"
description = "this service name"
type = string
}
variable "aws_account_id" {
description = "AWS account id"
type = string
}
variable "aws_s3_bucket" {
description = "AWS S3 bucket"
type = string
}
variable "aws_region" {
description = "AWS region to deploy products."
type = string
}
variable "aws_s3_transcription_dist_key" {
default = "output"
description = "AWS S3 transcription dist key"
type = string
}
variable "aws_s3_creation_dist_key" {
default = "output"
description = "AWS S3 creation dist key"
type = string
}
variable "aws_transcribe_language_code" {
default = "ja-JP"
description = "language_code"
type = string
}
variable "lambda_application_log_level" {
default = "INFO"
description = "lambda application log level"
type = string
}
variable "lambda_system_log_level" {
default = "INFO"
description = "lambda system log level"
type = string
}
variable "lambda_memory_size" {
default = 128
description = "lambda memory size"
type = number
}
variable "lambda_runtime" {
default = "python3.12"
description = "lambda runtime"
type = string
}
variable "lambda_timeout" {
default = 5
description = "lambda timeout"
type = number
}
variable "lambda_event_batch_size" {
default = 10
description = "lambda event batch size"
type = number
}
variable "sqs_delay_seconds" {
default = 0
description = "sqs delay seconds"
type = number
}
variable "sqs_max_message_size" {
default = 262144
description = "sqs max message size"
type = number
}
variable "sqs_message_retention_seconds" {
default = 345600
description = "sqs message retention seconds"
type = number
}
variable "sqs_receive_wait_time_seconds" {
default = 0
description = "sqs receive wait time seconds"
type = number
}
variable "sqs_visibility_timeout_seconds" {
default = 30
description = "sqs visibility timeout seconds"
type = number
}