pypilinux95% confidence\u2191 367

boto3 client NoRegionError: You must specify a region error only sometimes

Full error message
I have a boto3 client :

boto3.client('kms')

But it happens on new machines, They open and close dynamically. 

    if endpoint is None:
        if region_name is None:
            # Raise a more specific error message that will give
            # better guidance to the user what needs to happen.
            raise NoRegionError()

Why is this happening? and why only part of the time?

One way or another you must tell boto3 in which region you wish the kms client to be created. This could be done explicitly using the region_name parameter as in: kms = boto3.client('kms', region_name='us-west-2') or you can have a default region associated with your profile in your ~/.aws/config file as in: [default] region=us-west-2 or you can use an environment variable as in: export AWS_DEFAULT_REGION=us-west-2 but you do need to tell boto3 which region to use.

API access

Get this solution programmatically \u2014 free, no authentication.

curl https://depscope.dev/api/error/74aa2368ac138039ea2e0e5c3e1af6b0e27c55d8963eb85f78d7ba37e2064c1f
hash \u00b7 74aa2368ac138039ea2e0e5c3e1af6b0e27c55d8963eb85f78d7ba37e2064c1f
boto3 client NoRegionError: You must specify a region error… — DepScope fix | DepScope