Skip to content

Commit 13d17ad

Browse files
committed
Implements #360
1 parent 3c18f74 commit 13d17ad

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scar/providers/aws/lambdafunction.py

+2
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ def _get_creations_args(self, zip_payload_path: str, supervisor_zip_path: str) -
6767
'Architectures': self.function.get('architectures', ['x86_64'])}
6868
if self.function.get('vpc'):
6969
args['VpcConfig'] = self.function.get('vpc')
70+
if self.function.get('file_system_configs'):
71+
args['FileSystemConfigs'] = self.function.get('file_system_configs')
7072
if self.function.get('runtime') == "image":
7173
args['Code'] = {'ImageUri': self.function.get('container').get('image')}
7274
args['PackageType'] = 'Image'

0 commit comments

Comments
 (0)