forked from terraform-aws-modules/terraform-aws-autoscaling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
71 lines (60 loc) · 2.94 KB
/
outputs.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
# Launch configuration
output "this_launch_configuration_id" {
description = "The ID of the launch configuration"
value = "${var.launch_configuration == "" && var.create_lc ? element(concat(aws_launch_configuration.this.*.id, list("")), 0) : var.launch_configuration}"
}
output "this_launch_configuration_name" {
description = "The name of the launch configuration"
value = "${var.launch_configuration == "" && var.create_lc ? element(concat(aws_launch_configuration.this.*.name, list("")), 0) : ""}"
}
# Autoscaling group
output "this_autoscaling_group_id" {
description = "The autoscaling group id"
value = "${element(concat(aws_autoscaling_group.this.*.id, list("")), 0)}"
}
output "this_autoscaling_group_name" {
description = "The autoscaling group name"
value = "${element(concat(aws_autoscaling_group.this.*.name, list("")), 0)}"
}
output "this_autoscaling_group_arn" {
description = "The ARN for this AutoScaling Group"
value = "${element(concat(aws_autoscaling_group.this.*.arn, list("")), 0)}"
}
output "this_autoscaling_group_min_size" {
description = "The minimum size of the autoscale group"
value = "${element(concat(aws_autoscaling_group.this.*.min_size, list("")), 0)}"
}
output "this_autoscaling_group_max_size" {
description = "The maximum size of the autoscale group"
value = "${element(concat(aws_autoscaling_group.this.*.max_size, list("")), 0)}"
}
output "this_autoscaling_group_desired_capacity" {
description = "The number of Amazon EC2 instances that should be running in the group"
value = "${element(concat(aws_autoscaling_group.this.*.desired_capacity, list("")), 0)}"
}
output "this_autoscaling_group_default_cooldown" {
description = "Time between a scaling activity and the succeeding scaling activity"
value = "${element(concat(aws_autoscaling_group.this.*.default_cooldown, list("")), 0)}"
}
output "this_autoscaling_group_health_check_grace_period" {
description = "Time after instance comes into service before checking health"
value = "${element(concat(aws_autoscaling_group.this.*.health_check_grace_period, list("")), 0)}"
}
output "this_autoscaling_group_health_check_type" {
description = "EC2 or ELB. Controls how health checking is done"
value = "${element(concat(aws_autoscaling_group.this.*.health_check_type, list("")), 0)}"
}
//output "this_autoscaling_group_vpc_zone_identifier" {
// description = "The VPC zone identifier"
// value = "${element(concat(aws_autoscaling_group.this.vpc_zone_identifier, list("")), 0)}"
//}
//
//output "this_autoscaling_group_load_balancers" {
// description = "The load balancer names associated with the autoscaling group"
// value = "${aws_autoscaling_group.this.load_balancers}"
//}
//
//output "this_autoscaling_group_target_group_arns" {
// description = "List of Target Group ARNs that apply to this AutoScaling Group"
// value = "${aws_autoscaling_group.this.target_group_arns}"
//}