Skip to content

Commit

Permalink
Merge pull request #1020 from AlexsLemonade/avrohom/1012-fix-compute-…
Browse files Browse the repository at this point in the history
…env-deprecation-warning

1012 - Fix job_queue compute_env Deprecation Warning
  • Loading branch information
avrohomgottlieb authored Dec 9, 2024
2 parents 7368829 + a2458d6 commit 7ee62af
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 7ee62af

Please sign in to comment.