mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-03 17:23:09 +00:00
fix for security group description crash (#38108)
This commit is contained in:
committed by
Yunge Zhu
parent
d25420bbb9
commit
5d2c23e2a3
@@ -400,7 +400,7 @@ def compare_rules(r, rule):
|
||||
matched = True
|
||||
if rule.get('description', None) != r['description']:
|
||||
changed = True
|
||||
r['description'] = rule['description']
|
||||
r['description'] = rule.get('description', None)
|
||||
if rule['protocol'] != r['protocol']:
|
||||
changed = True
|
||||
r['protocol'] = rule['protocol']
|
||||
|
||||
Reference in New Issue
Block a user