Skip to content

Commit cb95ad6

Browse files
committedJan 27, 2023
Updated requirements.txt to use latest can_decoder (removing canmatrix warnings). Also, fixed deployment script to explicitly define region
1 parent fada2af commit cb95ad6

File tree

5 files changed

+67
-12
lines changed

5 files changed

+67
-12
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
aiobotocore==2.1.2
2+
aiohttp==3.8.1
3+
aioitertools==0.10.0
4+
aiosignal==1.2.0
5+
async-timeout==4.0.2
6+
attrs==21.4.0
7+
botocore==1.23.24
8+
can-decoder>=0.1.5
9+
canedge-browser>=0.0.8
10+
canmatrix==0.9.5
11+
certifi==2021.10.8
12+
charset-normalizer==2.0.12
13+
click==8.1.2
14+
colorama==0.4.4
15+
frozenlist==1.3.0
16+
fsspec==2022.2.0
17+
future==0.18.3
18+
idna==3.4
19+
influxdb-client==1.35.0
20+
jmespath==0.10.0
21+
mdf-iter>=2.0.4
22+
multidict==6.0.2
23+
numpy==1.24.1
24+
pandas==1.5.3
25+
python-dateutil==2.8.2
26+
pytz==2022.1
27+
s3fs==2022.2.0
28+
six==1.16.0
29+
typing-extensions==4.1.1
30+
urllib3==1.26.9
31+
wrapt==1.14.0
32+
yarl==1.7.2
33+
J1939-PGN==0.4

‎deploy-aws-lambda/delete_aws_lambda.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@
1313
# define initial variables
1414
AWS_ACCESS_KEY = inp.key
1515
AWS_SECRET_KEY = inp.secret
16+
17+
try:
18+
REGION = inp.endpoint.split(".")[1]
19+
except:
20+
print(f"Unable to extract region from {inp.endpoint} - check if correct syntax is used ala http://s3.region.amazonaws.com")
21+
print("Exiting script")
22+
sys.exit()
23+
1624
S3_BUCKET = inp.devices[0].split("/")[0]
1725

1826
LAMBDA_ROLE_NAME = "canedge-influxdb-lambda-role"
@@ -33,7 +41,7 @@
3341

3442
# Configure boto3 client
3543
session = boto3.Session(
36-
aws_access_key_id=AWS_ACCESS_KEY, aws_secret_access_key=AWS_SECRET_KEY
44+
aws_access_key_id=AWS_ACCESS_KEY, aws_secret_access_key=AWS_SECRET_KEY, region_name=REGION
3745
)
3846

3947
# Get AWS S3 bucket region
@@ -103,3 +111,5 @@
103111
print(f"--------------\nRemoved all event triggers from S3 bucket {S3_BUCKET}")
104112
except Exception as e:
105113
print(e)
114+
115+
print("\nDeletion completed.")

‎deploy-aws-lambda/deploy_aws_lambda.py

+22-9
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@
1818
# define initial variables
1919
AWS_ACCESS_KEY = inp.key
2020
AWS_SECRET_KEY = inp.secret
21+
22+
try:
23+
REGION = inp.endpoint.split(".")[1]
24+
except:
25+
print(f"Unable to extract region from {inp.endpoint} - check if correct syntax is used ala http://s3.region.amazonaws.com")
26+
print("Exiting script")
27+
sys.exit()
28+
2129
S3_BUCKET = inp.devices[0].split("/")[0]
2230
LAMBDA_ROLE_NAME = "canedge-influxdb-lambda-role"
2331
LAMBDA_FUNCTION_NAME = "canedge-influxdb-writer"
@@ -38,20 +46,20 @@
3846
)
3947
print("- Ensure that the S3 credentials in your inputs.py have admin permissions")
4048
print(
41-
"- If you have previously deployed a Lambda function, use the clear_lambda.py to remove it"
49+
"- If you have previously deployed a Lambda function, use the deletion script to remove it"
4250
)
4351

4452
# Configure boto3 client
4553
session = boto3.Session(
46-
aws_access_key_id=AWS_ACCESS_KEY, aws_secret_access_key=AWS_SECRET_KEY
54+
aws_access_key_id=AWS_ACCESS_KEY, aws_secret_access_key=AWS_SECRET_KEY, region_name=REGION
4755
)
4856

4957
# Get AWS S3 bucket region
5058
s3 = session.client("s3")
5159

5260
try:
5361
response = s3.get_bucket_location(Bucket=S3_BUCKET)
54-
REGION = response["LocationConstraint"]
62+
REGION_BUCKET = response["LocationConstraint"]
5563
except Exception as e:
5664
print("\n")
5765
print(e)
@@ -60,14 +68,22 @@
6068
print("- Please check if the 1st entry in your 'devices' list correctly includes your S3 bucket name")
6169
print("- Exiting script")
6270
sys.exit()
71+
72+
if REGION_BUCKET != REGION:
73+
print(f"WARNING: Bucket region is {REGION_BUCKET} and differs from session region {REGION} - please review.")
74+
print("- Exiting script")
75+
76+
sys.exit()
77+
78+
6379

6480
# Get AWS account ID
6581
sts = session.client("sts")
6682
response = sts.get_caller_identity()
6783
AWS_ACCOUNT_ID = response["Account"]
6884

6985
print(
70-
f"--------------\nConfigured AWS boto3 client and extracted S3 bucket region {REGION} and account ID {AWS_ACCOUNT_ID}"
86+
f"--------------\nConfigured AWS boto3 client and account ID {AWS_ACCOUNT_ID}"
7187
)
7288

7389
temp_dir = tempfile.mkdtemp()
@@ -138,11 +154,8 @@
138154
print(
139155
f"--------------\nAttached role policy AmazonS3FullAccess"
140156
)
141-
print("Waiting 10 seconds ...")
142-
time.sleep(10)
143-
144-
print("Waiting 10 seconds ...")
145-
time.sleep(10)
157+
print("Waiting 20 seconds ...")
158+
time.sleep(20)
146159

147160
# Create the lambda function if it does not already exist
148161
lambda_client = session.client("lambda")

‎deploy-aws-lambda/requirements.txt

-1
This file was deleted.

‎requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ aiosignal==1.2.0
55
async-timeout==4.0.2
66
attrs==21.4.0
77
botocore==1.23.24
8-
can-decoder>=0.1.3
8+
can-decoder>=0.1.5
99
canedge-browser>=0.0.8
1010
canmatrix==0.9.5
1111
certifi==2021.10.8

0 commit comments

Comments
 (0)
Please sign in to comment.