We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ee21c commit 88ea88cCopy full SHA for 88ea88c
aws_lambda/aws_lambda.py
@@ -333,7 +333,11 @@ def update_function(cfg, path_to_zip_file):
333
Handler=cfg.get('handler'),
334
Description=cfg.get('description'),
335
Timeout=cfg.get('timeout', 15),
336
- MemorySize=cfg.get('memory_size', 512)
+ MemorySize=cfg.get('memory_size', 512),
337
+ VpcConfig={
338
+ 'SubnetIds': cfg.get('subnet_ids', []),
339
+ 'SecurityGroupIds': cfg.get('security_group_ids', [])
340
+ }
341
)
342
343
0 commit comments