Fix SNS topic attribute typo

Enables adding SNS topic policy. 'Policy' attribute is capitalized.
pull/18777/head
Fernando J Pando 9 years ago committed by Matt Clay
parent 61672e5c61
commit 6d69956f83

@ -255,7 +255,7 @@ def main():
connection.set_topic_attributes(arn_topic, 'DisplayName', connection.set_topic_attributes(arn_topic, 'DisplayName',
display_name) display_name)
if policy and policy != json.loads(topic_attributes['policy']): if policy and policy != json.loads(topic_attributes['Policy']):
changed = True changed = True
attributes_set.append('policy') attributes_set.append('policy')
if not check_mode: if not check_mode:

Loading…
Cancel
Save