Devdeer.Caf.psd1

@{
    RootModule            = 'Devdeer.Caf.psm1'
    GUID                  = '44dfd2a4-e738-47a5-a08f-a41aa6124e2b'
    Author                = 'DEVDEER'
    CompanyName           = 'DEVDEER GmbH'
    Copyright             = '(c) 2024 DEVDEER GmbH. All rights reserved.'
    Description           = 'This module contains the functions to manage and prepare Azure Tenants in a CAF conform way.'
    DefaultCommandPrefix  = 'Caf'
    ModuleVersion         = '0.4.0'
    FunctionsToExport     = @(
        'Get-Context',
        'Use-Context',
        'Initialize-Subscriptions',
        'Initialize-Subscription',
        'Set-ServicePrincipal',
        'Initialize-ServicePrincipals',
        'Initialize-DeploymentSpGroup',
        'Use-ServicePrincipal',
        'New-Deployment',
        'Deploy-PolicyAssets',
        'Clear-PolicyAssets',
        'Start-Scoped',
        'Start-PimGroup',
        'Stop-PimGroup',
        'Start-PimRole',
        'Stop-PimRole',
        'Approve-PimRole',
        'New-SqlFirewallRule',
        'Clear-AllSqlFirewallRules'
        'Restore-Locks'
        'Remove-Locks'
    )
    CmdletsToExport       = @(

    )
    PrivateData           = @{
        PSData = @{
            Tags         = @(
                'DEVDEER',
                'Azure',
                'Az',
                'ARM',
                'Subscription',
                'Tenant',
                'CAF')
            # LicenseUri = ''
            ProjectUri   = 'https://devdeer.com'
            IconUri      = 'https://devdeer.blob.core.windows.net/shared/devdeer/logo_squared_240_bluelight.png'
            ReleaseNotes = @"
- Fixed bugs in New-CafDeployment.
- New optional parameter SpecificDeploymentFile in New-CafDeployment.
- New optional switch PerformPreDeploymentInCurrentScope in New-Caf-Deployment.
- Renamed 'New-CafNoDeleteLocksForResourceGroup' to 'Restore-CafLocks'.
- Renamed 'Remove-CafNoDeleteLocksForResourceGroup' to 'Remove-CafLocks'.
- 'Restore-CafLocks' will restore all authorization lock types if the target resource group name matches.
- 'Remove-CafLocks' now only returns the removed locks.
"@

        }
    }
    RequiredModules       = @(

    )
    #PowerShellVersion = '7.1'
    PowerShellHostName    = 'ConsoleHost'
    PowerShellHostVersion = '7.1'
    # DotNetFrameworkVersion = ''
    # CLRVersion = ''
    # ProcessorArchitecture = ''
    # RequiredAssemblies = @()
    # ScriptsToProcess = @()
    # TypesToProcess = @()
    # FormatsToProcess = @()
    # NestedModules = @()
    VariablesToExport     = '*'
    AliasesToExport       = @()
    # DscResourcesToExport = @()
    # ModuleList = @()
    # FileList = @()
    # HelpInfoURI = ''
}