You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
export AWS_PROFILE=$1;
thisProfileRegion=$(aws configure get region --profile $1);
defaultProfileRegion=$(aws configure get region --profile default);
export AWS_REGION=${thisProfileRegion:-$defaultProfileRegion};
So that I only need to define region in the "config" file once.
The text was updated successfully, but these errors were encountered:
I found this very handy:
So that I only need to define region in the "config" file once.
The text was updated successfully, but these errors were encountered: