Skip to content

Commit 1881222

Browse files
Merge pull request #2010 from LBHackney-IT/daclarkelbh-patch-3
Update 08-google-sheets-imports.tf
2 parents 1cf9664 + d6264fd commit 1881222

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

terraform/etl/08-google-sheets-imports.tf

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -948,3 +948,25 @@ module "parking_cycle_hangar_manual_waiting_list" {
948948
google_sheet_import_schedule = "cron(0 4 ? * * *)"
949949
spark_ui_output_storage_id = module.spark_ui_output_storage_data_source.bucket_id
950950
}
951+
952+
module "diplomatic_country_vrm_prefix_data_load" {
953+
count = local.is_live_environment ? 1 : 0
954+
source = "../modules/google-sheets-glue-job"
955+
is_production_environment = local.is_production_environment
956+
identifier_prefix = local.short_identifier_prefix
957+
is_live_environment = local.is_live_environment
958+
glue_scripts_bucket_id = module.glue_scripts_data_source.bucket_id
959+
helper_module_key = data.aws_s3_object.helpers.key
960+
pydeequ_zip_key = data.aws_s3_object.pydeequ.key
961+
glue_catalog_database_name = module.department_parking_data_source.raw_zone_catalog_database_name
962+
glue_temp_storage_bucket_url = module.glue_temp_storage_data_source.bucket_url
963+
glue_crawler_excluded_blobs = local.glue_crawler_excluded_blobs
964+
google_sheets_import_script_key = aws_s3_object.google_sheets_import_script.key
965+
bucket_id = module.raw_zone_data_source.bucket_id
966+
google_sheets_document_id = "1ui4i40sEp_wVlxVjcOhcQnhp2ucPpAQ9hALGJ7K76i0"
967+
google_sheets_worksheet_name = "diplomatic_country_vrm_prefix_data_load"
968+
department = module.department_parking_data_source
969+
dataset_name = "diplomatic_country_vrm_prefix_data_load"
970+
google_sheet_import_schedule = "cron(0 4 * * 1)"
971+
spark_ui_output_storage_id = module.spark_ui_output_storage_data_source.bucket_id
972+
}

0 commit comments

Comments
 (0)