Commit 60f2e03 1 parent 82f14a9 commit 60f2e03 Copy full SHA for 60f2e03
File tree 2 files changed +6
-7
lines changed
catalogue_graph/terraform
2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,10 @@ locals {
108
108
" label" : " Wikidata Linked MeSH Location Edges" ,
109
109
" transformer_type" : " wikidata_linked_mesh_locations" ,
110
110
" entity_type" : " edges"
111
- },
111
+ }
112
+ ]
113
+
114
+ concepts_pipeline_inputs_daily = [
112
115
{
113
116
" label" : " Catalogue Concept Nodes" ,
114
117
" transformer_type" : " catalogue_concepts" ,
@@ -119,10 +122,6 @@ locals {
119
122
" transformer_type" : " catalogue_concepts" ,
120
123
" entity_type" : " edges"
121
124
},
122
-
123
- ]
124
-
125
- concepts_pipeline_inputs_daily = [
126
125
{
127
126
" label" : " Catalogue Work Nodes" ,
128
127
" transformer_type" : " catalogue_works" ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ resource "aws_scheduler_schedule" "concepts_pipeline_monthly" {
8
8
schedule_expression = " cron(20 9 ? 1/1 MON#1 *)" # 1st Monday of the month at 9:20am
9
9
10
10
target {
11
- arn = aws_sfn_state_machine. concepts_pipeline . arn
11
+ arn = aws_sfn_state_machine. concepts_pipeline_monthly . arn
12
12
role_arn = aws_iam_role. state_machine_execution_role . arn
13
13
}
14
14
}
@@ -23,7 +23,7 @@ resource "aws_scheduler_schedule" "concepts_pipeline_daily" {
23
23
schedule_expression = " cron(20 14 ? * MON-THU *)" # MON-THU 2:20pm
24
24
25
25
target {
26
- arn = aws_sfn_state_machine. concepts_pipeline . arn
26
+ arn = aws_sfn_state_machine. concepts_pipeline_daily . arn
27
27
role_arn = aws_iam_role. state_machine_execution_role . arn
28
28
}
29
29
}
You can’t perform that action at this time.
0 commit comments