-
Notifications
You must be signed in to change notification settings - Fork 14
/
outputs.tf
38 lines (31 loc) · 1 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
output "security_group_id" {
description = "The ID of the bastion's security group."
value = aws_security_group.bastion.id
}
output "auto_scaling_group_id" {
description = "The ID of the bastion's auto scaling group."
value = aws_autoscaling_group.bastion.id
}
output "auto_scaling_group_arn" {
description = "The ARN of the bastion's auto scaling group."
value = aws_autoscaling_group.bastion.arn
}
output "launch_template_id" {
description = "The ID of the bastion's launch template."
value = aws_launch_template.bastion.id
}
output "launch_template_arn" {
description = "The ARN of the bastion's launch template."
value = aws_launch_template.bastion.arn
}
output "iam_role_arn" {
description = "The ARN of the bastion's IAM Role."
value = aws_iam_role.bastion.arn
}
output "iam_role_id" {
description = "The ID or name of the bastion's IAM Role."
value = aws_iam_role.bastion.id
}
output "aws_ami" {
value = data.aws_ami.amazon_linux.image_id
}