Skip to content

Commit

Permalink
add bucket, ln, tg outputs (Guimove#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shoowa authored Oct 11, 2022
1 parent ec3890c commit 64e8b28
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,25 @@ output "bucket_kms_key_arn" {
}

output "bucket_name" {
value = aws_s3_bucket.bucket.bucket
value = aws_s3_bucket.bucket.id
}

output "bucket_arn" {
value = aws_s3_bucket.bucket.arn
}

output "elb_ip" {
value = aws_lb.bastion_lb.dns_name
}

output "elb_arn" {
value = aws_lb.bastion_lb.arn
}

output "target_group_arn" {
value = aws_lb_target_group.bastion_lb_target_group.arn
}

output "private_instances_security_group" {
value = aws_security_group.private_instances_security_group.id
}
Expand Down

0 comments on commit 64e8b28

Please sign in to comment.