-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
65 lines (54 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
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
# Common
variable "aws_access_key" {
description = "AWS 계정 access key"
type = string
}
variable "aws_secret_key" {
description = "AWS 계정 secret key"
type = string
}
variable "aws_region" {
description = "AWS 리소스가 생성될 지역"
type = string
default = "ap-northeast-2"
}
variable "env_name" {
description = "현재 환경 이름"
type = string
}
variable "domain_name" {
description = "도메인 주소"
type = string
}
# IAM
variable "lambda_iam_role_name" {
description = "lambda 함수의 IAM Role 이름"
type = string
}
# Lambda
variable "api_url" {
description = "외부 API 서버의 기본 URL"
type = string
}
variable "create_problem_lambda_function_name" {
description = "Lambda 문제 생성 함수의 이름"
type = string
}
variable "create_problem_lambda_function_code_path" {
description = "Lambda 문제 생성 함수 코드의 경로"
type = string
default = "src/create_problem.zip"
}
variable "get_presigned_url_lambda_function_name" {
description = "Lambda presigned url 함수의 이름"
type = string
}
variable "get_presigned_url_lambda_function_code_path" {
description = "Lambda presigned url 함수 코드의 경로"
type = string
default = "src/problem_bucket_get_presigned_url.zip"
}
variable "api_gateway_name" {
description = "API Gateway의 이름"
type = string
}