-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
outputs.tf
84 lines (68 loc) · 2.68 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
output "launch_template_id" {
description = "The ID of the launch template"
value = module.autoscale_group.launch_template_id
}
output "launch_template_arn" {
description = "ARN of the launch template"
value = module.autoscale_group.launch_template_arn
}
output "autoscaling_group_id" {
description = "The AutoScaling Group ID"
value = module.autoscale_group.autoscaling_group_id
}
output "autoscaling_group_name" {
description = "The AutoScaling Group name"
value = module.autoscale_group.autoscaling_group_name
}
output "autoscaling_group_tags" {
description = "A list of tag settings associated with the AutoScaling Group"
value = module.autoscale_group.autoscaling_group_tags
}
output "autoscaling_group_arn" {
description = "ARN of the AutoScaling Group"
value = module.autoscale_group.autoscaling_group_arn
}
output "autoscaling_group_min_size" {
description = "The minimum size of the AutoScaling Group"
value = module.autoscale_group.autoscaling_group_min_size
}
output "autoscaling_group_max_size" {
description = "The maximum size of the AutoScaling Group"
value = module.autoscale_group.autoscaling_group_max_size
}
output "autoscaling_group_desired_capacity" {
description = "The number of Amazon EC2 instances that should be running in the group"
value = module.autoscale_group.autoscaling_group_desired_capacity
}
output "autoscaling_group_default_cooldown" {
description = "Time between a scaling activity and the succeeding scaling activity"
value = module.autoscale_group.autoscaling_group_default_cooldown
}
output "autoscaling_group_health_check_grace_period" {
description = "Time after instance comes into service before checking health"
value = module.autoscale_group.autoscaling_group_health_check_grace_period
}
output "autoscaling_group_health_check_type" {
description = "`EC2` or `ELB`. Controls how health checking is done"
value = module.autoscale_group.autoscaling_group_health_check_type
}
output "security_group_id" {
description = "ID of the worker nodes Security Group"
value = join("", aws_security_group.default[*].id)
}
output "security_group_arn" {
description = "ARN of the worker nodes Security Group"
value = join("", aws_security_group.default[*].arn)
}
output "security_group_name" {
description = "Name of the worker nodes Security Group"
value = join("", aws_security_group.default[*].name)
}
output "workers_role_arn" {
description = "ARN of the worker nodes IAM role"
value = local.workers_role_arn
}
output "workers_role_name" {
description = "Name of the worker nodes IAM role"
value = local.workers_role_name
}