-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
34 lines (28 loc) · 932 Bytes
/
vars.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
variable "aws_region" {
description = "The AWS region to deploy to (e.g. us-east-1)"
type = string
}
variable "name" {
description = "The name for the ASG. This name is also used to namespace all the other resources created by this module."
type = string
}
variable "instance_type" {
description = "The type of EC2 Instnaces to run in the ASG (e.g. t2.micro)"
type = string
}
variable "min_size" {
description = "The minimum number of EC2 Instances to run in the ASG"
type = number
}
variable "max_size" {
description = "The maximum number of EC2 Instances to run in the ASG"
type = number
}
variable "server_port" {
description = "The port number the web server on each EC2 Instance should listen on for HTTP requests"
type = number
}
variable "elb_port" {
description = "The port number the ELB should listen on for HTTP requests"
type = number
}