mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
10 lines
204 B
JavaScript
10 lines
204 B
JavaScript
import _ from 'lodash'
|
|
|
|
const resolveRegion = ({ configuration, options }) => {
|
|
return (
|
|
options.region || _.get(configuration, 'provider.region') || 'us-east-1'
|
|
)
|
|
}
|
|
|
|
export default resolveRegion
|