@@ -19,11 +19,11 @@ resources:
1919 on_success :
2020 - id : " slack-webhook"
2121
22- # Schedule configuration
22+ # Schedule configuration (environment-specific)
2323 schedule :
2424 quartz_cron_expression : " 0 0/2 * * * ?"
2525 timezone_id : " UTC"
26- pause_status : " ${var.trigger_pause_status} "
26+ pause_status : " PAUSED " # Default to paused, override in target configs
2727
2828 # Job cluster configuration
2929 job_clusters :
@@ -53,7 +53,7 @@ resources:
5353 description : " Load data from IoT API endpoints"
5454 job_cluster_key : " iot_processing_cluster"
5555 notebook_task :
56- notebook_path : " notebooks/iot_ingestion/api_ingestion_framework"
56+ notebook_path : " notebooks/iot_ingestion/api_ingestion_framework.py "
5757 source : " WORKSPACE"
5858 base_parameters :
5959 catalog : " ${var.catalog}"
@@ -70,7 +70,7 @@ resources:
7070 - task_key : " load_api_data"
7171 job_cluster_key : " iot_processing_cluster"
7272 notebook_task :
73- notebook_path : " notebooks/iot_ingestion/load_data_into_bronze"
73+ notebook_path : " notebooks/iot_ingestion/load_data_into_bronze.py "
7474 source : " WORKSPACE"
7575 base_parameters :
7676 catalog : " ${var.catalog}"
@@ -88,7 +88,7 @@ resources:
8888 - task_key : " load_to_bronze"
8989 job_cluster_key : " iot_processing_cluster"
9090 notebook_task :
91- notebook_path : " notebooks/iot_ingestion/create_final_bronze_table"
91+ notebook_path : " notebooks/iot_ingestion/create_final_bronze_table.py "
9292 source : " WORKSPACE"
9393 base_parameters :
9494 catalog : " ${var.catalog}"
@@ -101,14 +101,8 @@ resources:
101101 max_retries : 1
102102 min_retry_interval_millis : 60000
103103
104- # Access control
105- access_control_list :
106- - user_name : " odiakonova@seaspancorp.com"
107- permission_level : " IS_OWNER"
108- - group_name : " iot-data-engineers"
109- permission_level : " CAN_MANAGE_RUN"
110- - group_name : " iot-analysts"
111- permission_level : " CAN_VIEW"
104+ # Access control should be managed via permissions in bundle configuration
105+ # access_control_list field is not supported in job resources
112106
113107 # Tags for cost tracking and organization
114108 tags :
0 commit comments