diff --git a/main.tf b/main.tf index 840869f7..f7d1cfe2 100644 --- a/main.tf +++ b/main.tf @@ -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 } diff --git a/terraform/modules/swipe-sfn-batch-queue/outputs.tf b/terraform/modules/swipe-sfn-batch-queue/outputs.tf index 4c9861d0..c2de8dd8 100644 --- a/terraform/modules/swipe-sfn-batch-queue/outputs.tf +++ b/terraform/modules/swipe-sfn-batch-queue/outputs.tf @@ -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 diff --git a/version b/version index 9da686d5..79043673 100644 --- a/version +++ b/version @@ -1 +1 @@ -v0.9.2-beta +v0.10.0-beta