We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c18f74 commit 13d17adCopy full SHA for 13d17ad
scar/providers/aws/lambdafunction.py
@@ -67,6 +67,8 @@ def _get_creations_args(self, zip_payload_path: str, supervisor_zip_path: str) -
67
'Architectures': self.function.get('architectures', ['x86_64'])}
68
if self.function.get('vpc'):
69
args['VpcConfig'] = self.function.get('vpc')
70
+ if self.function.get('file_system_configs'):
71
+ args['FileSystemConfigs'] = self.function.get('file_system_configs')
72
if self.function.get('runtime') == "image":
73
args['Code'] = {'ImageUri': self.function.get('container').get('image')}
74
args['PackageType'] = 'Image'
0 commit comments