Skip to content

Commit

Permalink
add parking_cycle_hangar_allocation_update query to 38-aws-glue-job-p…
Browse files Browse the repository at this point in the history
…arking.tf (#1545)

complete parking_cycle_hangar_allocation_update query
  • Loading branch information
barnesm707 authored Dec 15, 2023
1 parent 8eea9a5 commit 84682f1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions terraform/etl/38-aws-glue-job-parking.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1395,3 +1395,26 @@ module "parking_cycle_hangars_denormalisation_update" {
"--environment" = var.environment
}
}
# MRB 15-12-2023 Job created
module "parking_cycle_hangar_allocation_update" {
source = "../modules/aws-glue-job"
is_live_environment = local.is_live_environment
is_production_environment = local.is_production_environment
department = module.department_parking_data_source
job_name = "${local.short_identifier_prefix}parking_cycle_hangar_allocation_update"
helper_module_key = data.aws_s3_object.helpers.key
pydeequ_zip_key = data.aws_s3_object.pydeequ.key
spark_ui_output_storage_id = module.spark_ui_output_storage_data_source.bucket_id
script_name = "parking_cycle_hangar_allocation_update"
triggered_by_job = "${local.short_identifier_prefix}Copy parking Liberator landing zone to raw"
job_description = "Rewrite of cycle hangar allocation using new denormalisation code"
workflow_name = "${local.short_identifier_prefix}parking-liberator-data-workflow"
trigger_enabled = local.is_production_environment
number_of_workers_for_glue_job = 10
glue_job_worker_type = "G.1X"
glue_version = "4.0"
job_parameters = {
"--job-bookmark-option" = "job-bookmark-disable"
"--environment" = var.environment
}
}

0 comments on commit 84682f1

Please sign in to comment.