ps/Modules/Alkami.PowerShell.SDK/Public/Set-SDKCertificateUsers.ps1
2023-05-30 22:51:22 -07:00

23 lines
1021 B
PowerShell

function Set-SDKCertificateUsers {
[CmdletBinding()]
param(
[string[]] $permittedIdenties
)
# TODO: See if we can fetch these from the server or splat them from another function and not list them here.
$rpsts2018 = '8edb140f1c84d4edcff730ea317662607218e5d9';
$service2018 = '21014a433bb309665d1a14c3278cc7bd4d8c1c93';
$client2018 = '692ddd519457eb6d943709b3ab0eb7ecc1945453';
$token2018 = '9d6c7985c0c94eae6d3fda358e044a715bba50b8';
foreach ($thumbprint in @($token2018,$service2018,$client2018,$rpsts2018)) {
Write-Host "Updating thumbprint [$thumbprint] for the following identities..."
foreach($identity in $permittedIdenties) {
Write-Host $identity
Set-AclOnCert -Thumbprint $thumbprint -Identity $identity -FileSystemRights "FullControl" -Type "Allow" -StoreName "My"
Set-AclOnCert -Thumbprint $thumbprint -Identity $identity -FileSystemRights "FullControl" -Type "Allow" -StoreName "TrustedPeople"
}
}
}