-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
49 lines (40 loc) · 1.04 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
variable "aws_region" {
description = "AWS region for all resources."
type = string
}
variable "lambda_funtion_name" {
description = "AWS Lambda Function Names"
type = list(any)
}
variable "apigw_method" {
description = "AWS API Gateway Methods for Resource Customer"
type = list(any)
}
variable "api_description" {
description = "AWS API Gateway REST API description"
type = string
}
variable "api_auth" {
description = "API authentication, default is NONE"
type = string
}
variable "api_gw_integration" {
description = "API Gateway integration type, default is AWS (Lambda)"
type = string
}
variable "apigw_path" {
description = "Specify API Gateway Resource Name"
type = string
}
variable "dynamodb_table_name" {
description = "Name of DynamoDB table"
type = string
}
variable "s3_prefix_name" {
description = "Prefix Name for S3 Bucket"
type = string
}
variable "api_gateway_name" {
description = "Name of AWS API Gateway"
type = string
}