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
output "asg_id" {
  description = "Auto Scaling Group name (ID)"
  value       = aws_autoscaling_group.this.id
}

output "asg_arn" {
  description = "Auto Scaling Group ARN"
  value       = aws_autoscaling_group.this.arn
}

output "launch_template_id" {
  description = "Launch template ID"
  value       = aws_launch_template.this.id
}

output "launch_template_arn" {
  description = "Launch template ARN"
  value       = aws_launch_template.this.arn
}

output "launch_template_latest_version" {
  description = "Latest launch template version number"
  value       = aws_launch_template.this.latest_version
}