Creates a basic AWS Batch job queue with two compute environments ordered by priority.

Terraform Template

resource "aws_batch_job_queue" "test_queue" {
  compute_environment_order = ["aws_batch_compute_environment.test_environment_1.arn", "1", "aws_batch_compute_environment.test_environment_2.arn", "2"]
  name = "tf-test-batch-job-queue"
  priority = 1
  state = "ENABLED"
}