-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
39 lines (33 loc) · 870 Bytes
/
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
variable "project" {
type = string
description = "Name for the project to be deployed"
default = "hello-world"
}
variable "vpc_id" {
type = string
description = "VPC to deploy to"
}
variable "domain" {
type = string
description = "Domain to deploy webservers to"
}
variable "instance_type" {
type = string
description = "Instance type to use for the web server. Defaulted to a smaller one for testing."
default = "t2.micro"
}
variable "min_asg_size" {
type = number
description = "Minimum size for the Autoscaling group"
default = 1
}
variable "max_asg_size" {
type = number
description = "Maximum size for the Autoscaling group"
default = 10
}
variable "desired_asg_size" {
type = number
description = "Desired size for the Autoscaling group"
default = 2
}