-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
93 lines (71 loc) · 1.46 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
variable "vpc_id" {
sensitive = "true"
description = "ID of the VPC within which you may be operating"
}
variable "my_ip_addr_cidr" {
sensitive = "true"
description = "My IP address value"
}
variable "source_cidr_block" {
sensitive = "true"
description = "Source address CIDR block"
}
variable "aws_target_region" {
description = "target region for which the automation would run"
type = string
}
# EC2 specific
variable "ec2_instance_name" {
description = "Name of the instance"
type = string
}
variable "launch_template_id" {
description = "launch template id"
default = ""
}
variable "launch_template_version" {
description = "version of the launch template"
default = 1
}
variable "target_group_name" {
type = string
}
variable "load_balancer_name" {
type = string
}
variable "elb_healthy_threshold" {
type = number
}
variable "elb_unhealthy_threshold" {
type = number
}
variable "elb_check_interval" {
type = number
}
variable "elb_listener_port" {
type = number
}
variable "elb_health_check_timeout" {
type = number
}
variable "elb_health_check_path" {
type = string
}
variable "elb_health_check_port" {
type = number
}
variable "elb_forward_port" {
type = number
}
variable "autoscaling_min_instances" {
type = number
default = 1
}
variable "autoscaling_desired_capacity" {
type = number
default = 1
}
variable "autoscaling_max_instances" {
type = number
default = 1
}