Skip to content

Commit

Permalink
[cloud] Fix Dead Letter config property name (ansible#27733)
Browse files Browse the repository at this point in the history
  • Loading branch information
hawka11 authored and ryansb committed Aug 4, 2017
1 parent b57af44 commit f62fa16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/modules/cloud/amazon/lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ def main():
func_kwargs.update({'Environment': {'Variables': environment_variables}})

if dead_letter_arn:
func_kwargs.update({'DeadLetterConfig': {'TargetARN': dead_letter_arn}})
func_kwargs.update({'DeadLetterConfig': {'TargetArn': dead_letter_arn}})

# If VPC configuration is given
if vpc_subnet_ids or vpc_security_group_ids:
Expand Down

0 comments on commit f62fa16

Please sign in to comment.