Show credential inheritance in tree view

Show credential inheritance in tree view

avatar

Is it possible to show credential inheritance in tree view? I'd like to easily identify objects not inheriting credentials from their parent...

All Comments (1)

avatar

Hello,

You could achieve this with the Report (custom) entry. This allows you to use a Powershell query to return certain entries. In your case I believe the following script should work, it checks that the value is not set to "inherited" for the credentials.

Foreach($connection in $Report.Connections) 
{
    if(!($connection.CredentialConnectionID -eq "1310CF82-6FAB-4B7A-9EEA-3E2E451CA2CF")) 
    {
        $Report.Include($connection);
    }
}


In my test scenario, the only entry set to inherited is "Website inherited", which means all the other entries in my vault show up. You could also further refine the script to only return certain types of entries, or to exclude certain ones.


From there, you are able to right click the entries and edit them if you want to enable inheritance on them.

Let me know if this works well for what you need to do.

Regards,

Hubert Mireault

fdfc880b-e987-4589-bdbc-57972c175c69.png