AzureRMFAccelerator.psd1

@{
    ModuleVersion     = '1.0.0'
    GUID              = '3bd0e3b5-7c9d-489a-b850-02e83a653ca8'
    Author            = 'Alan Rosado'
    CompanyName       = 'Elysium'
    Description       = 'Azure RMF Accelerator - PowerShell module for managing ARA JSON files with roles, environments, resources, STIGs, and configuration strings.'
    PowerShellVersion = '5.1'
    RootModule        = 'AzureRMFAccelerator.psm1'

    FunctionsToExport = @(
        'Connect-ARAFile',
        'New-ARAFile',
        'Get-ARASystem',
        'Set-ARASystem',
        'Test-ARAFile',
        'New-ARARole',
        'Get-ARARole',
        'Add-ARARole',
        'Set-ARARole',
        'Remove-ARARole',
        'New-ARAEnvironment',
        'Get-ARAEnvironment',
        'Add-ARAEnvironment',
        'Set-ARAEnvironment',
        'Remove-ARAEnvironment',
        'New-ARAResourceGroup',
        'New-ARAResource',
        'Get-ARAResource',
        'Add-ARAResource',
        'Set-ARAResource',
        'Remove-ARAResource',
        'New-ARALinkedResource',
        'Add-ARALinkedResource',
        'Set-ARALinkedResource',
        'Remove-ARALinkedResource',
        'New-ARAResourceType',
        'Get-ARAResourceType',
        'Add-ARAResourceType',
        'Set-ARAResourceType',
        'Remove-ARAResourceType',
        'Get-ARASoftware',
        'Add-ARASoftware',
        'Set-ARASoftware',
        'Remove-ARASoftware',
        'New-ARASTIG',
        'Get-ARASTIG',
        'Add-ARASTIG',
        'Set-ARASTIG',
        'Remove-ARASTIG',
        'New-ARAConfigurationString',
        'Get-ARAConfigurationString',
        'Add-ARAConfigurationString',
        'Set-ARAConfigurationString',
        'Remove-ARAConfigurationString'
    )

    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()

    PrivateData       = @{
        PSData = @{
            Tags         = @('Azure', 'RMF', 'ARA', 'STIG', 'ICAM', 'Security')
            ProjectUri   = 'https://github.com/alrosado/azure-rmf-accelerator-json/tree/main/powershell/AzureRMFAccelerator'
            LicenseUri   = 'https://raw.githubusercontent.com/alrosado/azure-rmf-accelerator-json/refs/heads/main/powershell/AzureRMFAccelerator/LICENSE'
            IconUri      = 'https://raw.githubusercontent.com/alrosado/azure-rmf-accelerator-json/refs/heads/main/powershell/AzureRMFAccelerator/icon.png'
            ReleaseNotes = 'https://github.com/alrosado/azure-rmf-accelerator-json/blob/main/powershell/AzureRMFAccelerator/release.md'
        }
    }
}