diff --git a/README.md b/README.md index 929cd56..ddd5a0c 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ No resources. | [as2\_stack\_name](#input\_as2\_stack\_name) | Stack name | `string` | `"ARC-batch-stack"` | no | | [compute\_environments](#input\_compute\_environments) | Compute environments | `string` | `"fargate"` | no | | [compute\_resources\_max\_vcpus](#input\_compute\_resources\_max\_vcpus) | Max VCPUs resources | `number` | `1` | no | -| [container\_image\_url](#input\_container\_image\_url) | Container image URL | `string` | `"public.ecr.aws/docker/library/busybox:latest"` | no | +| [container\_image\_url](#input\_container\_image\_url) | Container image URL | `string` | `"pandoc/minimal"` | no | | [container\_memory](#input\_container\_memory) | Containter Memory resources | `number` | `2048` | no | | [container\_vcpu](#input\_container\_vcpu) | Containter VCPUs resources | `number` | `1` | no | | [efs\_throughput\_in\_mibps](#input\_efs\_throughput\_in\_mibps) | EFS provisioned throughput in mibps | `number` | `1` | no | diff --git a/modules/batch/main.tf b/modules/batch/main.tf index d57a768..7662943 100644 --- a/modules/batch/main.tf +++ b/modules/batch/main.tf @@ -44,41 +44,6 @@ module "batch" { } } - # # Job queues and scheduling policies - # job_queues = { - # low_priority = { - # name = "LowPriority" - # state = "ENABLED" - # priority = 1 - - # tags = { - # JobQueue = "Low priority job queue" - # } - # } - - # high_priority = { - # name = "HighPriority" - # state = "ENABLED" - # priority = 99 - - # fair_share_policy = { - # compute_reservation = 1 - # share_decay_seconds = 3600 - - # share_distribution = [{ - # share_identifier = "A1*" - # weight_factor = 0.1 - # }, { - # share_identifier = "A2" - # weight_factor = 0.2 - # }] - # } - - # tags = { - # JobQueue = "High priority job queue" - # } - # } - # } } resource "aws_batch_job_definition" "simple_batch_job" { @@ -90,7 +55,7 @@ resource "aws_batch_job_definition" "simple_batch_job" { container_properties = <