Skip to content

Commit 3266877

Browse files
committed
upgraded to node 14
1 parent 343e731 commit 3266877

4 files changed

+15
-8
lines changed

.travis.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ python:
55
- '2.7'
66
jobs:
77
include:
8-
- stage: Node 10
9-
node_js: '10.17'
10-
env: FUNCTION_DIR=cloudwatchlogs-with-dlq TEST_DIR=cloudwatchlogs-with-dlq TEST_FILE=test_cwl_lambda.py NODE_VERSION="10.x"
8+
- stage: Node 14
9+
node_js: '14'
10+
env: FUNCTION_DIR=cloudwatchlogs-with-dlq TEST_DIR=cloudwatchlogs-with-dlq TEST_FILE=test_cwl_lambda.py NODE_VERSION="14.x"
11+
- stage: Node 12
12+
node_js: '12'
13+
env: FUNCTION_DIR=cloudwatchlogs-with-dlq TEST_DIR=cloudwatchlogs-with-dlq TEST_FILE=test_cwl_lambda.py NODE_VERSION="12.x"
1114
- stage: Node 10
1215
node_js: '10.17'
1316
env: FUNCTION_DIR=loggroup-lambda-connector TEST_DIR=loggroup-lambda-connector/test TEST_FILE=test_loggroup_lambda_connector.py NODE_VERSION="10.x"

cloudwatchlogs-with-dlq/DLQLambdaCloudFormation.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@
224224
}
225225
},
226226
"Handler": "cloudwatchlogs_lambda.handler",
227-
"Runtime": "nodejs10.x",
227+
"Runtime": "nodejs14.x",
228228
"MemorySize": 128,
229229
"Environment": {
230230
"Variables": {
@@ -286,7 +286,7 @@
286286
]
287287
}
288288
},
289-
"Runtime": "nodejs10.x",
289+
"Runtime": "nodejs14.x",
290290
"MemorySize": 128,
291291
"Environment": {
292292
"Variables": {

cloudwatchlogs-with-dlq/DLQLambdaCloudFormationWithSecuredEndpoint.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@
266266
}
267267
},
268268
"Handler": "cloudwatchlogs_lambda.handler",
269-
"Runtime": "nodejs10.x",
269+
"Runtime": "nodejs14.x",
270270
"MemorySize": 128,
271271
"Environment": {
272272
"Variables": {
@@ -327,7 +327,7 @@
327327
]
328328
}
329329
},
330-
"Runtime": "nodejs10.x",
330+
"Runtime": "nodejs14.x",
331331
"MemorySize": 128,
332332
"Environment": {
333333
"Variables": {

cloudwatchlogs-with-dlq/test_cwl_lambda.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -236,10 +236,14 @@ def prod_deploy():
236236
global BUCKET_PREFIX
237237
BUCKET_PREFIX = 'appdevzipfiles'
238238
upload_code_in_multiple_regions()
239-
print("Uploading template file in S3")
240239
s3 = boto3.client('s3', "us-east-1")
241240
filename = 'DLQLambdaCloudFormation.json'
241+
print("Uploading template file: %s in S3" % filename)
242242
bucket_name = "appdev-cloudformation-templates"
243+
s3.upload_file(filename, bucket_name, filename,
244+
ExtraArgs={'ACL': 'public-read'})
245+
filename = 'DLQLambdaCloudFormationWithSecuredEndpoint.json'
246+
print("Uploading template file: %s in S3" % filename)
243247
s3.upload_file(filename, bucket_name, filename,
244248
ExtraArgs={'ACL': 'public-read'})
245249
print("Deployment Successfull: ALL files copied to Sumocontent")

0 commit comments

Comments
 (0)