File tree Expand file tree Collapse file tree 6 files changed +14
-10
lines changed
Expand file tree Collapse file tree 6 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 33[ ![ ActionsTest-Windows-pwsh-Build] ( https://github.com/Azure/ALZ-PowerShell-Module/actions/workflows/wf_Windows_Core.yml/badge.svg?branch=main )] ( https://github.com/Azure/ALZ-PowerShell-Module/actions/workflows/wf_Windows_Core.yml )
44[ ![ license] ( https://img.shields.io/badge/License-MIT-purple.svg )] ( LICENSE )
55
6- ![ Logo] ( ./docs/ALZLogo-Small .png )
6+ ![ Logo] ( ./docs/ALZLogo.png )
77
88## Synopsis
99
Original file line number Diff line number Diff line change 102102
103103 PSData = @ {
104104
105+ Name = " ALZ"
106+
105107 # Tags applied to this module. These help with module discovery in online galleries.
106- # Tags = @()
108+ Tags = @ (
109+ ' Azure'
110+ ' LandingZones'
111+ ' ALZ'
112+ )
107113
108114 # A URL to the license for this module.
109115 LicenseUri = ' https://github.com/Azure/ALZ-PowerShell-Module/blob/initial_module_config/LICENSE'
112118 ProjectUri = ' https://github.com/Azure/ALZ-Powershell-Module'
113119
114120 # A URL to an icon representing this module.
115- # IconUri = ''
121+ IconUri = ' https://raw.githubusercontent.com/Azure/ALZ-PowerShell-Module/main/docs/rsz_alzlogo.png?token=GHSAT0AAAAAACAOIZ6NBDR7MPRSCNBS3RQUZA4IYUQ '
116122
117123 # ReleaseNotes of this module
118- # ReleaseNotes = ''
124+ ReleaseNotes = ' Thsi is the first release of the ALZ PowerShell Module. This module is currently in preview and is subject to change. '
119125
120126 # Prerelease string of this module
121- # Prerelease = ''
127+ Prerelease = ' beta '
122128
123129 # Flag to indicate whether the module requires explicit user acceptance for install/update/save
124130 # RequireLicenseAcceptance = $false
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ function New-ALZEnvironment {
4242
4343 if ($alzIacProvider -eq " terraform" ) {
4444 Write-InformationColored " Terraform is not yet supported." - ForegroundColor Red - InformationAction Continue
45- return $false
45+ return
4646 }
4747
4848 if ($PSCmdlet.ShouldProcess (" ALZ-Bicep module configuration" , " modify" )) {
@@ -68,5 +68,5 @@ function New-ALZEnvironment {
6868 }
6969 }
7070
71- return $true
71+ return
7272}
Original file line number Diff line number Diff line change @@ -74,9 +74,7 @@ InModuleScope 'ALZ' {
7474 }
7575
7676 It ' should return the output directory on completion' {
77- $result = New-ALZEnvironment
78- $result | Should - Be $true
79-
77+ New-ALZEnvironment
8078 Assert-MockCalled - CommandName Edit-ALZConfigurationFilesInPlace - Exactly 1
8179 }
8280
You can’t perform that action at this time.
0 commit comments