forked from terraform-aws-modules/terraform-aws-autoscaling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
124 lines (99 loc) · 4.71 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
################################################################################
# Launch configuration
################################################################################
output "launch_configuration_id" {
description = "The ID of the launch configuration"
value = element(concat(aws_launch_configuration.this.*.id, [""]), 0)
}
output "launch_configuration_arn" {
description = "The ARN of the launch configuration"
value = element(concat(aws_launch_configuration.this.*.arn, [""]), 0)
}
output "launch_configuration_name" {
description = "The name of the launch configuration"
value = element(concat(aws_launch_configuration.this.*.name, [""]), 0)
}
################################################################################
# Launch template
################################################################################
output "launch_template_id" {
description = "The ID of the launch template"
value = element(concat(aws_launch_template.this.*.id, [""]), 0)
}
output "launch_template_arn" {
description = "The ARN of the launch template"
value = element(concat(aws_launch_template.this.*.arn, [""]), 0)
}
output "launch_template_latest_version" {
description = "The latest version of the launch template"
value = element(concat(aws_launch_template.this.*.latest_version, [""]), 0)
}
################################################################################
# Autoscaling group
################################################################################
output "autoscaling_group_id" {
description = "The autoscaling group id"
value = element(concat(aws_autoscaling_group.this.*.id, [""]), 0)
}
output "autoscaling_group_name" {
description = "The autoscaling group name"
value = element(concat(aws_autoscaling_group.this.*.name, [""]), 0)
}
output "autoscaling_group_arn" {
description = "The ARN for this AutoScaling Group"
value = element(concat(aws_autoscaling_group.this.*.arn, [""]), 0)
}
output "autoscaling_group_min_size" {
description = "The minimum size of the autoscale group"
value = element(concat(aws_autoscaling_group.this.*.min_size, [""]), 0)
}
output "autoscaling_group_max_size" {
description = "The maximum size of the autoscale group"
value = element(concat(aws_autoscaling_group.this.*.max_size, [""]), 0)
}
output "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, [""]), 0)
}
output "autoscaling_group_default_cooldown" {
description = "Time between a scaling activity and the succeeding scaling activity"
value = element(concat(aws_autoscaling_group.this.*.default_cooldown, [""]), 0)
}
output "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, [""]), 0)
}
output "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, [""]), 0)
}
output "autoscaling_group_availability_zones" {
description = "The availability zones of the autoscale group"
value = element(concat(aws_autoscaling_group.this.*.availability_zones, [""]), 0)
}
output "autoscaling_group_vpc_zone_identifier" {
description = "The VPC zone identifier"
value = element(concat(aws_autoscaling_group.this.*.vpc_zone_identifier, [""]), 0)
}
output "autoscaling_group_load_balancers" {
description = "The load balancer names associated with the autoscaling group"
value = element(concat(aws_autoscaling_group.this.*.load_balancers, [""]), 0)
}
output "autoscaling_group_target_group_arns" {
description = "List of Target Group ARNs that apply to this AutoScaling Group"
value = element(concat(aws_autoscaling_group.this.*.target_group_arns, [""]), 0)
}
################################################################################
# Autoscaling group schedule
################################################################################
output "autoscaling_schedule_arns" {
description = "ARNs of autoscaling group schedules"
value = { for k, v in aws_autoscaling_schedule.this : k => v.arn }
}
################################################################################
# Autoscaling group policy
################################################################################
output "autoscaling_policy_arns" {
description = "ARNs of autoscaling group policies"
value = { for k, v in aws_autoscaling_policy.this : k => v.arn }
}