Skip to content

Commit

Permalink
cloudfront_cache_policy: Fix recursive insertion of items quantity
Browse files Browse the repository at this point in the history
  • Loading branch information
Zozman committed Feb 17, 2024
1 parent 15ee63d commit 15b2617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/cloudfront_cache_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ def insert_quantities(dict_with_items):
# Recursively check sub-dict
for k, v in dict_with_items.items():
if isinstance(v, dict):
v = self.insert_quantities(v)
v = CloudfrontCachePolicyService.insert_quantities(v)

return dict_with_items

Expand Down

0 comments on commit 15b2617

Please sign in to comment.