If the AWS CLI is not configured with a region, the region validation portion of main.py will fail when attempting to get a list of valid AWS regions. Update the following line:
|
ec2 = boto3.client("ec2") |
To look like:
ec2 = boto3.client("ec2", region_name=region)
If the AWS CLI is not configured with a region, the region validation portion of main.py will fail when attempting to get a list of valid AWS regions. Update the following line:
flexible-snapshot-proxy/src/main.py
Line 348 in 8753431
To look like:
ec2 = boto3.client("ec2", region_name=region)