|
18 | 18 | # define initial variables
|
19 | 19 | AWS_ACCESS_KEY = inp.key
|
20 | 20 | 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 | + |
21 | 29 | S3_BUCKET = inp.devices[0].split("/")[0]
|
22 | 30 | LAMBDA_ROLE_NAME = "canedge-influxdb-lambda-role"
|
23 | 31 | LAMBDA_FUNCTION_NAME = "canedge-influxdb-writer"
|
|
38 | 46 | )
|
39 | 47 | print("- Ensure that the S3 credentials in your inputs.py have admin permissions")
|
40 | 48 | 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" |
42 | 50 | )
|
43 | 51 |
|
44 | 52 | # Configure boto3 client
|
45 | 53 | 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 |
47 | 55 | )
|
48 | 56 |
|
49 | 57 | # Get AWS S3 bucket region
|
50 | 58 | s3 = session.client("s3")
|
51 | 59 |
|
52 | 60 | try:
|
53 | 61 | response = s3.get_bucket_location(Bucket=S3_BUCKET)
|
54 |
| - REGION = response["LocationConstraint"] |
| 62 | + REGION_BUCKET = response["LocationConstraint"] |
55 | 63 | except Exception as e:
|
56 | 64 | print("\n")
|
57 | 65 | print(e)
|
|
60 | 68 | print("- Please check if the 1st entry in your 'devices' list correctly includes your S3 bucket name")
|
61 | 69 | print("- Exiting script")
|
62 | 70 | 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 | + |
63 | 79 |
|
64 | 80 | # Get AWS account ID
|
65 | 81 | sts = session.client("sts")
|
66 | 82 | response = sts.get_caller_identity()
|
67 | 83 | AWS_ACCOUNT_ID = response["Account"]
|
68 | 84 |
|
69 | 85 | 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}" |
71 | 87 | )
|
72 | 88 |
|
73 | 89 | temp_dir = tempfile.mkdtemp()
|
|
138 | 154 | print(
|
139 | 155 | f"--------------\nAttached role policy AmazonS3FullAccess"
|
140 | 156 | )
|
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) |
146 | 159 |
|
147 | 160 | # Create the lambda function if it does not already exist
|
148 | 161 | lambda_client = session.client("lambda")
|
|
0 commit comments