You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a PowerShell module that provides a set of cmdlets to create and manage Azure Landing Zones.
9
+
This is a PowerShell module that provides a set of cmdlets to create and manage Accelerators for Azure Landing Zones and other workloads.
10
10
11
11
## Description
12
12
13
-
This module provides a set of cmdlets to create and manage Azure Landing Zones.
13
+
This module provides a set of cmdlets to create and manage Accelerators for Azure Landing Zones and other workloads.
14
14
15
15
## Why
16
16
17
-
The goal of this project it is to make easy to get started with Azure Landing Zones and to speed up some basic tasks that you would need to perform whilst managing your Azure Landing Zones.
17
+
The goal of this project it is to make easy to get started with Azure Landing Zones and other workloads. It is designed to speed up some basic tasks that you would need to perform whilst managing your Azure Landing Zones.
18
+
19
+
For usage of the Azure Landing Zoners Accelerators, please refer to the detailed documentation:
@@ -24,11 +29,14 @@ In order to use this module you will need PowerShell 7.1 or higher.
24
29
Download and install the latest version from the official PowerShell GitHub releases page: [PowerShell Releases](https://github.com/PowerShell/PowerShell/releases)
25
30
26
31
To make PowerShell 7 your default instead of version 5, consider setting an alias.
27
-
Open a PowerShell session and run the following command:
28
-
```powershell
32
+
33
+
Open a PowerShell session and run the following command:
34
+
35
+
```powershell
29
36
$PSVersionTable.PSVersion
30
37
Set-Alias powershell pwsh
31
38
```
39
+
32
40
### Installation
33
41
34
42
You can install this module using PowerShellGet.
@@ -60,7 +68,7 @@ Before you start you can utilize the functionality of the module to verify if yo
60
68
#### Bicep
61
69
62
70
```powershell
63
-
Test-ALZRequirement -IaC "bicep"
71
+
Test-ALZRequirement -i "bicep"
64
72
```
65
73
66
74
Currently this tests for:
@@ -75,7 +83,7 @@ Currently this tests for:
75
83
#### Terraform
76
84
77
85
```powershell
78
-
Test-ALZRequirement -IaC "terraform"
86
+
Test-ALZRequirement -i "terraform"
79
87
```
80
88
81
89
This currently tests for:
@@ -88,38 +96,25 @@ This currently tests for:
88
96
#### Azure Landing Zone Environment with Bicep and GitHub Actions Workflows
Copy file name to clipboardExpand all lines: src/ALZ/ALZ.psd1
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,6 @@
70
70
71
71
# 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.
72
72
FunctionsToExport=@(
73
-
'Get-ALZGithubRelease'
74
73
'New-ALZEnvironment'
75
74
'Test-ALZRequirement'
76
75
'Edit-LineEnding'
@@ -85,6 +84,7 @@
85
84
# 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.
Write-InformationColored"You have passed the skipInternetChecks parameter, but there is no existing version in the $targetFolder module, so we can't continue."
0 commit comments