-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvariables.tf
More file actions
36 lines (29 loc) · 753 Bytes
/
variables.tf
File metadata and controls
36 lines (29 loc) · 753 Bytes
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
variable "name" {
default = "microservice_api"
description = "This can be defined when calling module so you can avoid creating duplicates if you want to call the module multiple times"
}
# Variables
variable "region" {
description = "Region must be specified"
}
variable "proxy_hostname" {
description = "Hostname for Fabio"
}
variable "proxy_port" {
description = "Port for Nomad API"
default = "80"
}
variable "subnet_ids" {
type = "list"
description = "Subnet IDs to associate with Lambda Function"
}
variable "security_group_ids" {
type = "list"
description = "Security Group IDs to associate with Lambda Function"
}
variable "burst_limit" {
default = 5
}
variable "rate_limit" {
default = 10
}