|
9 | 9 | @{
|
10 | 10 |
|
11 | 11 | # Script module or binary module file associated with this manifest.
|
12 |
| - RootModule = 'ALZ.psm1' |
| 12 | + RootModule = 'ALZ.psm1' |
13 | 13 |
|
14 | 14 | # Version number of this module.
|
15 |
| - ModuleVersion = '0.1.0' |
| 15 | + ModuleVersion = '0.1.0' |
16 | 16 |
|
17 | 17 | # Supported PSEditions
|
18 | 18 | # CompatiblePSEditions = @()
|
19 | 19 |
|
20 | 20 | # ID used to uniquely identify this module
|
21 |
| - GUID = '74a4385f-281e-4776-bd7c-3b6a09d6ba63' |
| 21 | + GUID = '74a4385f-281e-4776-bd7c-3b6a09d6ba63' |
22 | 22 |
|
23 | 23 | # Author of this module
|
24 |
| - Author = 'Microsoft Corporation' |
| 24 | + Author = 'Microsoft Corporation' |
25 | 25 |
|
26 | 26 | # Company or vendor of this module
|
27 |
| - CompanyName = 'Microsoft Corporation' |
| 27 | + CompanyName = 'Microsoft Corporation' |
28 | 28 |
|
29 | 29 | # Copyright statement for this module
|
30 |
| - Copyright = '(c) Microsoft Corporation. All rights reserved.' |
| 30 | + Copyright = '(c) Microsoft Corporation. All rights reserved.' |
31 | 31 |
|
32 | 32 | # Description of the functionality provided by this module
|
33 |
| - Description = 'Azure Landing Zones Powershell Module' |
| 33 | + Description = 'Azure Landing Zones Powershell Module' |
34 | 34 |
|
35 | 35 | CompatiblePSEditions = 'Core'
|
36 | 36 |
|
37 | 37 | # Minimum version of the PowerShell engine required by this module
|
38 |
| - PowerShellVersion = '7.4' |
| 38 | + PowerShellVersion = '7.4' |
39 | 39 |
|
40 | 40 | # Name of the PowerShell host required by this module
|
41 | 41 | # PowerShellHostName = ''
|
|
53 | 53 | # ProcessorArchitecture = ''
|
54 | 54 |
|
55 | 55 | # Modules that must be imported into the global environment prior to importing this module
|
56 |
| - RequiredModules = @() |
| 56 | + RequiredModules = @( |
| 57 | + @{ |
| 58 | + ModuleName = 'Az.Accounts' |
| 59 | + ModuleVersion = '2.10.4' |
| 60 | + }, |
| 61 | + @{ |
| 62 | + ModuleName = 'Az.Resources' |
| 63 | + ModuleVersion = '6.5.0' |
| 64 | + } |
| 65 | + ) |
57 | 66 |
|
58 | 67 | # Assemblies that must be loaded prior to importing this module
|
59 | 68 | # RequiredAssemblies = @()
|
|
71 | 80 | # NestedModules = @()
|
72 | 81 |
|
73 | 82 | # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
|
74 |
| - FunctionsToExport = @( |
| 83 | + FunctionsToExport = @( |
75 | 84 | 'Test-AcceleratorRequirement',
|
76 |
| - 'Deploy-Accelerator' |
| 85 | + 'Deploy-Accelerator', |
| 86 | + 'Invoke-EABillingSPNPermissionsSetup' |
77 | 87 | )
|
78 | 88 |
|
79 | 89 | # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
|
80 |
| - CmdletsToExport = @() |
| 90 | + CmdletsToExport = @() |
81 | 91 |
|
82 | 92 | # Variables to export from this module
|
83 |
| - VariablesToExport = '*' |
| 93 | + VariablesToExport = '*' |
84 | 94 |
|
85 | 95 | # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
|
86 |
| - AliasesToExport = @() |
| 96 | + AliasesToExport = @() |
87 | 97 |
|
88 | 98 | # DSC resources to export from this module
|
89 | 99 | # DscResourcesToExport = @()
|
|
95 | 105 | # FileList = @()
|
96 | 106 |
|
97 | 107 | # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
|
98 |
| - PrivateData = @{ |
| 108 | + PrivateData = @{ |
99 | 109 |
|
100 | 110 | PSData = @{
|
101 | 111 |
|
|
112 | 122 | LicenseUri = 'https://github.com/Azure/ALZ-PowerShell-Module/blob/main/LICENSE'
|
113 | 123 |
|
114 | 124 | # A URL to the main website for this project.
|
115 |
| - ProjectUri = 'https://github.com/Azure/ALZ-Powershell-Module' |
| 125 | + ProjectUri = 'https://github.com/Azure/ALZ-PowerShell-Module' |
116 | 126 |
|
117 | 127 | # A URL to an icon representing this module.
|
118 | 128 | IconUri = 'https://raw.githubusercontent.com/Azure/ALZ-PowerShell-Module/main/docs/rsz_alzlogo.png'
|
|
0 commit comments