-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathvariables.tf
81 lines (73 loc) · 2.02 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
/*
* Module: tf_aws_asg_elb
*/
#
# Launch Configuration Variables
#
variable "lc_name" {}
variable "ami_id" {
description = "The AMI to use with the launch configuration"
}
variable "instance_type" {}
variable "iam_instance_profile" {
description = "The IAM role the launched instance will use"
}
variable "key_name" {
description = "The SSH public key name (in EC2 key-pairs) to be injected into instances"
}
variable "security_group" {
description = "ID of SG the launched instance will use"
}
variable "user_data" {
description = "The path to a file with user_data for the instances"
}
#
# Auto-Scaling Group
#
variable "asg_name" {}
/* We use this to populate the following ASG settings
* - max_size
* - desired_capacity
*/
variable "asg_number_of_instances" {
description = "The number of instances we want in the ASG"
}
/*
* Can be set to 0 if you never want the ASG to replace failed instances
*/
variable "asg_minimum_number_of_instances" {
description = "The minimum number of instances the ASG should maintain"
default = 1
}
variable "health_check_grace_period" {
description = "Number of seconds for a health check to time out"
default = 300
}
/*
* Types available are:
* - ELB
* - EC2
*
* @see-also: http://docs.aws.amazon.com/cli/latest/reference/autoscaling/create-auto-scaling-group.html#options
*/
variable "health_check_type" {
description = "The health check used by the ASG to determine health"
default = "ELB"
}
variable "load_balancer_names" {
description = "A comma seperated list string of ELB names the ASG should associate instances with"
}
/*
* A string list of AZs, ex:
* "us-east-1a,us-east-1c,us-east-1e"
*/
variable "availability_zones" {
description = "A comma seperated list string of AZs the ASG will be associated with"
}
/*
* A string list of VPC subnet IDs, ex:
* "subnet-d2t4sad,subnet-434ladkn"
*/
variable "vpc_zone_subnets" {
description = "A comma seperated list string of VPC subnets to associate with ASG, should correspond with var.availability_zones zones"
}