Product: PowerShell Universal
Version: 5.0.9
I have a few apps that are used by non IT members that i dont want to have access to the portal. The way im currently doing this is putting them in an AD group that satisfies the authentication.ps1 script and then another AD group for a role that has a redirect URL to the app:
New-PSURole -Name "B2C" -Description "Provides access to display B2C dashboard" -DefaultRoute "/B2C" -Policy {
The problem that i am having is that i also have some team roles within IT where some of the users in those teams will have access to this app also. When i assign them to the B2C role they also get redirected to the app which i do not want.
The only way around this i can see is to create two roles and two AD groups, one with a redirect and one without. This is not ideal as its more to manage and i plan on auto provisioning access to this app with Sailpoint which will make things more complex. Is there a way to prevent redirection if the user is in a role that doesn’t have redirection enabled?