Skip to content

Commit 037d17a

Browse files
authored
Use node14 runtime in connector integ tests (#278)
1 parent 6a65cb2 commit 037d17a

9 files changed

+10
-10
lines changed

integration/resources/templates/combination/connector_event_rule_to_eb_custom_write.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Resources:
22
TriggerFunction:
33
Type: AWS::Serverless::Function
44
Properties:
5-
Runtime: nodejs16.x
5+
Runtime: nodejs14.x
66
Handler: index.handler
77
Timeout: 10 # in case eb has delay
88
InlineCode: |

integration/resources/templates/combination/connector_event_rule_to_eb_default_write.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Resources:
22
TriggerFunction:
33
Type: AWS::Serverless::Function
44
Properties:
5-
Runtime: nodejs16.x
5+
Runtime: nodejs14.x
66
Handler: index.handler
77
Timeout: 10 # in case eb has delay
88
InlineCode: |

integration/resources/templates/combination/connector_event_rule_to_lambda_write.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Resources:
22
TriggerFunction:
33
Type: AWS::Serverless::Function
44
Properties:
5-
Runtime: nodejs16.x
5+
Runtime: nodejs14.x
66
Handler: index.handler
77
Timeout: 10 # in case eb has delay
88
InlineCode: |
@@ -52,7 +52,7 @@ Resources:
5252
Function:
5353
Type: AWS::Serverless::Function
5454
Properties:
55-
Runtime: nodejs16.x
55+
Runtime: nodejs14.x
5656
Handler: index.handler
5757
InlineCode: |
5858
const AWS = require('aws-sdk');

integration/resources/templates/combination/connector_event_rule_to_sfn_write.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Resources:
22
TriggerFunction:
33
Type: AWS::Serverless::Function
44
Properties:
5-
Runtime: nodejs16.x
5+
Runtime: nodejs14.x
66
Handler: index.handler
77
Timeout: 10 # in case eb has delay
88
InlineCode: |

integration/resources/templates/combination/connector_event_rule_to_sns_write.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Resources:
22
TriggerFunction:
33
Type: AWS::Serverless::Function
44
Properties:
5-
Runtime: nodejs16.x
5+
Runtime: nodejs14.x
66
Handler: index.handler
77
Timeout: 10 # in case eb has delay
88
InlineCode: |

integration/resources/templates/combination/connector_event_rule_to_sqs_write.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Resources:
22
TriggerFunction:
33
Type: AWS::Serverless::Function
44
Properties:
5-
Runtime: nodejs16.x
5+
Runtime: nodejs14.x
66
Handler: index.handler
77
Timeout: 10 # in case eb has delay
88
InlineCode: |

integration/resources/templates/combination/connector_httpapi_to_function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Resources:
2727
Type: AWS::Lambda::Function
2828
Properties:
2929
Role: !GetAtt MyRole1.Arn
30-
Runtime: nodejs16.x
30+
Runtime: nodejs14.x
3131
Handler: index.handler
3232
Code:
3333
ZipFile: |

integration/resources/templates/combination/connector_restapi_to_function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Resources:
2727
Type: AWS::Lambda::Function
2828
Properties:
2929
Role: !GetAtt MyRole1.Arn
30-
Runtime: nodejs16.x
30+
Runtime: nodejs14.x
3131
Handler: index.handler
3232
Code:
3333
ZipFile: |

integration/resources/templates/combination/connector_sfn_to_function_write.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Resources:
1919
MyFunction:
2020
Type: AWS::Serverless::Function
2121
Properties:
22-
Runtime: nodejs16.x
22+
Runtime: nodejs14.x
2323
Handler: index.handler
2424
InlineCode: |
2525
exports.handler = async (event) => {

0 commit comments

Comments
 (0)