Skip to content

Commit

Permalink
output batch CE security group (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
morsecodist authored Jan 19, 2022
1 parent 945b3fd commit e67f0de
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ output "sfn_arns" {
value = module.sfn.sfn_arns
}

output "compute_environment_security_group_id" {
description = "ID of the security group associated with the batch compute environments"
value = module.batch_queue.compute_environment_security_group_id
}

output "sfn_notification_queue_arns" {
value = module.sfn.sfn_notification_queue_arns
}
Expand Down
5 changes: 5 additions & 0 deletions terraform/modules/swipe-sfn-batch-queue/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
output "compute_environment_security_group_id" {
description = "ID of the security group associated with the batch compute environments"
value = aws_security_group.swipe.id
}

output "batch_spot_job_queue_arn" {
description = "ARN of the AWS Batch Queue connected to a spot compute environment created by this module"
value = aws_batch_job_queue.swipe_main["spot"].arn
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.9.2-beta
v0.10.0-beta

0 comments on commit e67f0de

Please sign in to comment.