mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
import _ from 'lodash';
|
|
|
|
const resolveRegion = ({ configuration, options }) => {
|
|
return options.region || _.get(configuration, 'provider.region') || 'us-east-1';
|
|
};
|
|
|
|
export default resolveRegion;
|