Skip to content

Commit

Permalink
fix(aws/lambda): Fix deserializing of lambda alias configurations by …
Browse files Browse the repository at this point in the history
…fixing typo in attributes map (#4885)

Co-authored-by: smaniyedath <shyam_maniyedath@intuit.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Sep 15, 2020
1 parent 96dc4c1 commit 2a1bd20
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public CacheResult loadData(ProviderCache providerCache) {
attributes.put("account", account.getName());
attributes.put("region", region);
attributes.put("revisions", listFunctionRevisions(x.getFunctionArn()));
attributes.put("aliasConfiguration", listAliasConfiguration(x.getFunctionArn()));
attributes.put("aliasConfigurations", listAliasConfiguration(x.getFunctionArn()));
attributes.put(
"eventSourceMappings", listEventSourceMappingConfiguration(x.getFunctionArn()));

Expand Down

0 comments on commit 2a1bd20

Please sign in to comment.