You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In access_key_auto_rotation\account_scan.py one adds resource_email
# Update actions with resource owner email from tag
if config.resourceOwnerTag is not '':
..
for action in user_actions:
action.update({"resource_email": resource_owner_email})
but in access_key_auto_rotation\main.py one is looking for resource_owner
# Extract subsets of actions for resource owners
resource_owners = {action.get("resource_owner") for action in action_queue}
resulting no resource_owners being found ..
The text was updated successfully, but these errors were encountered:
In
access_key_auto_rotation\account_scan.py
one addsresource_email
but in
access_key_auto_rotation\main.py
one is looking forresource_owner
resulting no
resource_owners
being found ..The text was updated successfully, but these errors were encountered: