-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
69 lines (56 loc) · 1.67 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
variable "region" {
description = "MyAWS"
type = string
}
variable "profile" {
description = "MyAWS"
type = string
}
variable "vpc_cidr" {
description = "The CIDR block for the VPC"
type = string
}
variable "environment" {
description = "VPC"
type = string
}
variable "public_subnets_cidr" {
description = "List of public subnets for the VPC"
type = list(string)
}
variable "private_subnets_cidr" {
description = "List of private subnets for the VPC"
type = list(string)
}
variable "availability_zones" {
description = "List of availability zones names in the region"
type = list(string)
}
variable "ec2_ami" {
type = string
description = "EC2 AMI"
}
variable "ec2_instance_type" {
type = string
description = "EC2 instance type"
}
variable "cool_down" {
type = number
description = "Time required to temporarily suspend any scaling activities in order to allow the newly launched EC2 instance(s) some time to start handling the application traffic."
}
variable "scale_up_period" {
type = string
description = "The period in seconds over which the specified statistic is applied."
}
variable "GreaterThanOrEqualToThreshold" {
type = string
description = "The value against which the specified statistic is compared"
}
variable "scale_down_period" {
type = string
description = "The period in seconds over which the specified statistic is applied"
}
variable "LessThanOrEqualToThreshold" {
type = string
description = "The value against which the specified statistic is compared"
}