Creates an AWS Batch Scheduling Policy with fair share policy settings and tags.

Terraform Template

resource "aws_batch_scheduling_policy" "example" {
  name = "example"

  tags = {
    Name = "Example Batch Scheduling Policy"
  }
}