Skip to content

Commit

Permalink
comment out batch module output vars and add TODOs to uncomment later
Browse files Browse the repository at this point in the history
  • Loading branch information
avrohomgottlieb committed Nov 21, 2024
1 parent fe5260c commit 28ee16f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions infrastructure/api.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@ resource "aws_instance" "api_server_1" {
database_user = aws_db_instance.postgres_db.username
database_name = aws_db_instance.postgres_db.db_name
database_password = var.database_password
aws_batch_job_queue_name = module.batch.job_queue_name
aws_batch_job_definition_name = module.batch.job_definition_name
# TODO: enable batch
# aws_batch_job_queue_name = module.batch.job_queue_name
# aws_batch_job_definition_name = module.batch.job_definition_name
aws_region = var.region
aws_s3_bucket_name = aws_s3_bucket.scpca_portal_bucket.id
sentry_dsn = var.sentry_dsn
Expand Down
1 change: 1 addition & 0 deletions infrastructure/batch.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# TODO: enable batch
# module "batch" {
# source = "./batch"

Expand Down

0 comments on commit 28ee16f

Please sign in to comment.