-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
75 lines (62 loc) · 2.15 KB
/
variables.tf
File metadata and controls
75 lines (62 loc) · 2.15 KB
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
variable "environment" {
type = "string"
description = "The environment of the application. Valid value may varies from development, testing, staging, production, or management."
}
variable "description" {
type = "string"
description = "Brief descriptive name of Lambda instance profile."
}
variable "product_domain" {
type = "string"
description = "Abbreviation of the product domain this ASG and its instances belongs to."
}
variable "service_name" {
type = "string"
description = "Name of the service."
}
variable "role_max_session_duration" {
type = "string"
description = "The maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default maximum of one hour is applied. This setting can have a value from 1 hour to 12 hours."
default = 3600
}
variable "domain_name" {
type = "string"
description = "Domain name for API gateway."
default = ""
}
variable "allowed_cidr" {
type = "list"
description = "List of allowed CIDR."
default = []
}
variable "stage_name" {
type = "string"
description = "API Gateway Deployment stage name."
default = "v1"
}
# API Gateway Usage Plan
variable "quota_limit" {
type = "string"
description = "The maximum number of requests that can be made in a given time period."
default = 96
}
variable "quota_offset" {
type = "string"
description = "The number of requests subtracted from the given limit in the initial time period."
default = 0
}
variable "quota_period" {
type = "string"
description = "The time period in which the limit applies. Valid values are DAY, WEEK or MONTH."
default = "DAY"
}
variable "throttle_burst_limit" {
type = "string"
description = "The API request burst limit, the maximum rate limit over a time ranging from one to a few seconds, depending upon whether the underlying token bucket is at its full capacity."
default = 5
}
variable "throttle_rate_limit" {
type = "string"
description = " The API request steady-state rate limit."
default = 10
}