Damien Coles f172d00514 Initial release: Declarative AD Framework v2.1.0
Infrastructure-as-code framework for Active Directory objects and Group Policy.
Sanitized from production deployment for public sharing.
2026-02-19 17:02:42 +00:00

21 lines
626 B
PowerShell

# Security Group Definitions
# Processed after OUs, before user membership sync.
@(
@{
Name = 'MasterAdmins'
Path = 'OU=ExampleAdmins,DC=example,DC=internal'
Scope = 'Global'
Description = 'Master administrators - full control over all managed OUs'
Members = @('t0admin')
}
@{
Name = 'DelegatedAdmins'
Path = 'OU=ExampleAdmins,DC=example,DC=internal'
Scope = 'Global'
Description = 'Delegated administrators - scoped helpdesk privileges in ExampleUsers'
Members = @('jsmith')
}
)