-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
60 lines (50 loc) · 1.23 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
variable "app_name" {
type = string
description = "Application Name"
default = "ingestion"
}
variable "app_environment" {
type = string
description = "Application Environment"
default = "dev"
}
variable "stage_name" {
type = string
description = "Stage name"
default = "apiv1"
}
variable "endpoint_name" {
type = string
description = "Endpoint name"
default = "orders"
}
variable "lambda_handler" {
type = string
description = "Lambda handler for python code <python_filename>.<function_name>"
default = "lambda_function.lambda_handler"
}
variable "python_runtime" {
type = string
description = "Python lambda runtime"
default = "python3.12"
}
variable "github_org" {
type = string
description = "Github organization"
default = "Andresmup"
}
variable "repository_name" {
type = string
description = "Repository name"
default = "aws-kinesis-data-ingestion-restapi"
}
variable "account_id" {
type = string
description = "Account id"
default = "604476232840"
}
variable "parquet_compression_format" {
type = string
description = "Format used in parquet compression"
default = "SNAPPY"
}