-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoutputs.tf
49 lines (40 loc) · 1.25 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
output "instance_ami_id" {
value = data.aws_ami.ubuntu.id
description = "The AMI ID of the Ubuntu instances AMI"
}
output "instance_ami_arn" {
value = data.aws_ami.ubuntu.arn
description = "The ARN of the Ubuntu instances AMI"
}
output "instance_ami_architecture" {
value = data.aws_ami.ubuntu.architecture
description = "The architecture of the Ubuntu instances AMI"
}
output "instance_ami_name" {
value = data.aws_ami.ubuntu.name
description = "The name of the Ubuntu instances AMI"
}
output "launch_configuration_id" {
value = aws_launch_configuration.as_conf.id
description = "The ID of the Launch Configuration"
}
output "launch_configuration_arn" {
value = aws_launch_configuration.as_conf.arn
description = "The ARN of the Launch Configuration"
}
output "launch_configuration_name" {
value = aws_launch_configuration.as_conf.name
description = "The name of the Launch Configuration"
}
output "asg_id" {
value = aws_autoscaling_group.as_group.id
description = "The ID of the Auto Scaling Group"
}
output "asg_arn" {
value = aws_autoscaling_group.as_group.arn
description = "The ARN of the Auto Scaling Group"
}
output "asg_name" {
value = aws_autoscaling_group.as_group.name
description = "The name of the Auto Scaling Group"
}