-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathvars.tf
35 lines (29 loc) · 949 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
35
# Input variable: server port
variable "server_port" {
description = "The port the server will use for HTTP requests"
default = "8080"
}
# Input variable: Cluster name
variable "cluster_name" {
description = "The name to use for all the cluster resources"
}
# Input variable: DB remote state bucket name
variable "db_remote_state_bucket" {
description = "The name of the S3 bucket for the database's remote state"
}
# Input variable: DB remote state bucket key
variable "db_remote_state_key" {
description = "The path for database's remote state in S3"
}
# Input variable: Instance type
variable "instance_type" {
description = "The type of EC2 Instances to run (e.g. t2.micro)"
}
# Input variable: Instance min size
variable "min_size" {
description = "The minimum number of EC2 Instances in the ASG"
}
# Input variable: Instance max size
variable "max_size" {
description = "The maximum number of EC2 Instances in the ASG"
}