ldx-pki.psd1

@{
    RootModule = 'ldx-pki.psm1'
    PowerShellVersion = '5.1'
    ModuleVersion = '1.0.5'
    GUID = 'e7c0f308-50e4-4a79-ae2a-ccb23bea8655'
    Author = 'Leif Almberg'
    CompanyName = 'AB Lindex'
    Copyright = '(c) 2025 Leif Almberg. Free to use.'
    Description = 'AB Lindex Powershell PKI Module'
    FunctionsToExport =  'Get-AllIssuedCertificates', 'Get-AllTemplates', 'Get-TemplateReport', 'Get-CertificateReport',
                         'Get-TemplateInUse', 'Get-TemplateNotInUse', 'Get-CertificateFromTemplate', 'Get-CertificateFromAllTemplates'
    CmdletsToExport = @()
    VariablesToExport = '*'
    AliasesToExport = @()
    PrivateData = @{
        PSData = @{
            Tags = @("PKI","certificate","ca")
        }
    }
}