File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
serverless-offline-dynamodb-streams/src
serverless-offline-kinesis/src
serverless-offline-sqs/src Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ class ServerlessOfflineDynamoDBStreams {
82
82
83
83
const { env} = process ;
84
84
const functionEnv = assignAll ( [
85
- { } ,
85
+ { AWS_REGION : get ( 'service.provider.region' , this ) } ,
86
86
env ,
87
87
get ( 'service.provider.environment' , this ) ,
88
88
get ( 'environment' , __function )
Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ class ServerlessOfflineKinesis {
78
78
79
79
const { env} = process ;
80
80
const functionEnv = assignAll ( [
81
+ { AWS_REGION : get ( 'service.provider.region' , this ) } ,
81
82
env ,
82
83
get ( 'service.provider.environment' , this ) ,
83
84
get ( 'environment' , __function )
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ class ServerlessOfflineSQS {
100
100
101
101
const { env} = process ;
102
102
const functionEnv = assignAll ( [
103
+ { AWS_REGION : get ( 'service.provider.region' , this ) } ,
103
104
env ,
104
105
get ( 'service.provider.environment' , this ) ,
105
106
get ( 'environment' , __function )
You can’t perform that action at this time.
0 commit comments