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
# Pull Request
## Issue
Fixes#33Fixes#32
## Description
Changes to ensure that subscription ids persist as an array when only
one value remains.
Handling case insensitive deduplication of subscription ids.
Fixes a part of the ReadMe.md (probably more work required, but fixing a
small part of that document)
## License
By submitting this pull request, I confirm that my contribution is made
under the terms of the projects associated license.
Copy file name to clipboardExpand all lines: README.md
+22-21Lines changed: 22 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -6,21 +6,21 @@
6
6
7
7
## Synopsis
8
8
9
-
This is a PowerShell module that provides a set of cmdlets to manage Azure Landing Zones.
9
+
This is a PowerShell module that provides a set of cmdlets to create and manage Azure Landing Zones.
10
10
11
11
## Description
12
12
13
-
This module provides a set of cmdlets to manage Azure Landing Zones.
13
+
This module provides a set of cmdlets to create and manage Azure Landing Zones.
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 be using while managing your Azure Landing Zones.
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.
18
18
19
19
## Getting Started
20
20
21
21
### Prerequisites
22
22
23
-
In order to use this module you will need powershell 7.1 or higher.
23
+
In order to use this module you will need PowerShell 7.1 or higher.
24
24
25
25
### Installation
26
26
@@ -32,24 +32,31 @@ Install-Module -Name ALZ
32
32
33
33
### Quick start
34
34
35
-
Before start o utilize the functionality of the module you can verify if you have all the prerequisites installed, with the built in command:
35
+
Before you start you can utilize the functionality of the module to verify if you have all the prerequisites installed with the built in command:
36
36
37
37
```powershell
38
-
Test-ALZPrerequisites
38
+
Test-ALZRequirement
39
39
```
40
40
41
-
#### Create a new Azure Landing Zone Environment
41
+
Currently this tests for:
42
42
43
-
```powershell
43
+
* Supported minimum PowerShell version
44
+
* Azure PowerShell Module
45
+
* Git
46
+
* Azure CLI
47
+
* Bicep
44
48
49
+
#### Create a new Azure Landing Zone Environment
45
50
51
+
```powershell
52
+
New-ALZEnvironment -o <output_directory>
46
53
```
47
54
48
55
## Development
49
56
50
-
### Prerequisites
57
+
### Development Prerequisites
51
58
52
-
In order to develop this module you will need powershell 7.1 or higher.
59
+
In order to develop this module you will need PowerShell 7.1 or higher.
This project welcomes contributions and suggestions. Most contributions require you to agree to a
65
-
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
71
+
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
66
72
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
67
73
68
-
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
69
-
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
70
-
provided by the bot. You will only need to do this once across all repos using our CLA.
74
+
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
71
75
72
76
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
73
-
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
74
-
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
77
+
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
75
78
76
79
## Trademarks
77
80
78
-
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow [Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
81
82
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
82
-
Any use of third-party trademarks or logos are subject to those third-party's policies.
83
+
Any use of third-party trademarks or logos are subject to those third-party's policies.
0 commit comments