-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
55 lines (44 loc) · 1.01 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
variable "client" {
type = string
description = "Name of the client"
}
variable "region" {
type = string
description = "The AWS region being used."
}
variable "app" {
type = string
description = "The app in use"
}
variable "env" {
type = string
description = "The environment in use"
}
variable "vpc_id" {
type = string
description = "The VPC ID passed to the module"
}
variable "azs" {
type = list(any)
description = "A list of availability zones to use"
}
# variable "subnet" {
# type = string
# description = "The subnet to launch the autoscaling hosts in"
# }
variable "asg_min_size" {
type = number
description = "The minimum number of autoscaling hosts"
}
variable "asg_max_size" {
type = number
description = "The maximum number of autoscaling hosts"
}
variable "instance_type" {
type = string
description = "The instance type for the autoscaling group to use"
}
variable "volume_arn" {
type = string
description = "The ARN of the EBS volume to attach to the host"
}