From 6e3448f9b24e8f86ffedf5258db1827a439e4035 Mon Sep 17 00:00:00 2001 From: Patrick Kelley Date: Tue, 15 Nov 2016 20:22:37 +0000 Subject: [PATCH] Auditor ChangeItems now receive ARN --- security_monkey/auditor.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/security_monkey/auditor.py b/security_monkey/auditor.py index e42665e51..63d968f0c 100644 --- a/security_monkey/auditor.py +++ b/security_monkey/auditor.py @@ -157,6 +157,7 @@ def read_previous_items(self): region=item.region, account=item.account.name, name=item.name, + arn=item.arn, new_config=item_revision.config) new_item.audit_issues = [] new_item.db_item = item @@ -177,6 +178,7 @@ def read_previous_items_for_account(self, index, account): region=item.region, account=item.account.name, name=item.name, + arn=item.arn, new_config=item_revision.config) new_item.audit_issues = [] new_item.db_item = item