Skip to content

Commit

Permalink
fix job queue compute_env deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
avrohomgottlieb committed Dec 8, 2024
1 parent 7368829 commit a2458d6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions infrastructure/batch/job_queue.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ resource "aws_batch_job_queue" "scpca_portal_project" {
state = "ENABLED"
priority = 1

compute_environments = [
aws_batch_compute_environment.scpca_portal_project.arn,
]
compute_environment_order {
order = 1
compute_environment = aws_batch_compute_environment.scpca_portal_project.arn
}

tags = var.batch_tags
}

0 comments on commit a2458d6

Please sign in to comment.