New type for the Authorization Rules #77
Replies: 1 comment 11 replies
-
@sylwester-majcher We've thought about a few cases where we'd want to do some sort of custom authorization. Maybe using SCCMs 'primary computer' feature to determine who would have access to a LAPS password, or an external database of some sort to hold authorization information. I think this is another valid case where you have a specific attribute in your directory that you want to use for authorization. In order to achieve this, we've included support for PowerShell authorization rules.. When you use a PowerShell-based authorization, AMS provides your script with the details of the user requesting access, as well as the computer they are trying to access. In your case, you can then call out to active directory and interrogate your custom attributes and just tell access manager what the user should be allowed to access. Regarding PAM support, you dont need the AD PAM feature to use JIT. AMS will detect if PAM is available and use it, but if not, will fall back to using dynamic groups. |
Beta Was this translation helpful? Give feedback.
-
I have idea for authorization rules.
For now we have three type of rule: Container, Group, Computer.
In my organisation we plan to use few custom attributes to attach computer object to; specific city, region, owner, customer, department, etc intead of keeping this fix values for example in the computer name by having specific criteria in the computer´s naming.
My idea is to have custom attribute like LAPS with value for example like: LAPSHRComputers;LAPSITComputers;LAPSGroupXX'
And then we will be able choose in the authorization rules type as Attribute than write name of attribute(in my example "LAPS") and value(in my example "LAPSITComputers")
Lithnet tool then writes the LAPS attribute and checks the computer object has in the LAPS attr value like "LAPSITComputers".
By this way we dont have to create tons of specific security groups for computers the time we want to separate few computers for on Engineer that want to generate LAPS password for this several computers only.
I know we have JIT support but there is PAM requirenments and not all comapnies has AD level with PAM you know...
For me this new element makes me independent of the domain administrator and solution will be more dynamic.
Beta Was this translation helpful? Give feedback.
All reactions