Skip to content

Commit 6dd4712

Browse files
Merge pull request #224 from JulianHayward/mssgck
6.4.0
2 parents 4f06cc8 + b735d5a commit 6dd4712

39 files changed

Lines changed: 3490 additions & 36213 deletions

.azuredevops/pipelines/AzGovViz.pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ schedules:
2020
- master #CHECK branch 'master' is applicable? - delete me :)
2121

2222
#Running AzOps? Run Azure Governance Visualizer after 'AzOps - Push' ..
23-
#AzOps Accellerator https://github.com/Azure/AzOps-Accelerator
23+
#AzOps accelerator https://github.com/Azure/AzOps-Accelerator
2424
#resources:
2525
# pipelines:
2626
# - pipeline: 'Push'
@@ -188,7 +188,7 @@ jobs:
188188
}
189189
else {
190190
Write-Host "Assuming and insisting that you do not want to publish your tenant insights to the public"
191-
Write-Host "HTML NOT published. Please configure authentication on the webApp ($($env:WEBAPPNAME))"
191+
Write-Host "HTML NOT published. Please configure authentication on the Azure Web App ($($env:WEBAPPNAME))."
192192
exit 1
193193
}
194194
azurePowerShellVersion: latestVersion

.azuredevops/pipelines/AzGovViz.variables.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,12 @@ variables:
117117
# String | example: value: "westus"
118118
value: 'westeurope'
119119

120-
# Defines the limit (default=500) of AAD Group members; For AAD Groups that have more members than the defined limit Group members will not be resolved
120+
# Defines the limit (default=500) of Microsoft Entra group members; For Microsoft Entra groups that have more members than the defined limit, group members will not be resolved
121121
- name: AADGroupMembersLimit
122122
# Integer | default = 500 | example: value: 333
123123
value:
124124

125-
# Define warning period for Service Principal secret and certificate expiry
125+
# Define warning period for the service principal secret and certificate expiry
126126
- name: AADServicePrincipalExpiryWarningDays
127127
# Integer | default = 14 | example: value: 21
128128
value:
@@ -207,7 +207,7 @@ variables:
207207
# Switch | example: value: true
208208
value:
209209

210-
# Will not resolve Microsoft Entra ID (AAD) Group memberships for Role assignments where identity type is 'Group'
210+
# Will not resolve Microsoft Entra group memberships for role assignments where identity type is 'Group'
211211
- name: NoAADGroupsResolveMembers
212212
# Switch | example: value: true
213213
value:
@@ -276,7 +276,7 @@ variables:
276276
# Switch | example: value: true
277277
value:
278278

279-
# Define the number of script blocks running in parallel. Leveraging PowerShell Core´s parallel capability you can define the ThrottleLimit (default=5)
279+
# Define the number of script blocks running in parallel. Using PowerShell's parallel capability you can define the ThrottleLimit (default=5).
280280
- name: ThrottleLimit
281281
# Integer | Default = 10 | example: value: 11
282282
value:

.github/workflows/AzGovViz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
}
136136
else {
137137
Write-Host 'Assuming and insisting that you do not want to publish your tenant insights to the public'
138-
Write-Host "HTML NOT published. Please configure authentication on the webApp ($($env:WebAppName))"
138+
Write-Host "HTML NOT published. Please configure authentication on the Azure Web App ($($env:WebAppName))."
139139
exit 1
140140
}
141141
azPSVersion: "latest"

.github/workflows/AzGovViz_OIDC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
}
145145
else {
146146
Write-Host 'Assuming and insisting that you do not want to publish your tenant insights to the public'
147-
Write-Host "HTML NOT published. Please configure authentication on the webApp ($($env:WebAppName))"
147+
Write-Host "HTML NOT published. Please configure authentication on the Azure Web App ($($env:WebAppName))."
148148
exit 1
149149
}
150150
azPSVersion: "latest"

README.md

Lines changed: 298 additions & 289 deletions
Large diffs are not rendered by default.

contributionGuide.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# Contribution Guide
1+
# Contribution guide
22

3-
* Fork the repository
4-
* Your working directory is `.\Azure-MG-Sub-Governance-Reporting`
5-
* In the folder `.\pwsh\dev` find the function you intend to work on, apply your changes
6-
* Edit the file `.\pwsh\dev\devAzGovVizParallel.ps1`
7-
* In the param block update the parameter variable `$ProductVersion` accordingly
8-
* Execute `.\pwsh\dev\buildAzGovVizParallel.ps1` - This step will rebuilt the main `.\pwsh\AzGovVizParallel.ps1` file (incorporating all changes you did in the `.\pwsh\dev` directory)
9-
* Edit the file `.\README.md`
10-
* Update the region `Release history`, replace the changes from the previous release with your changes
11-
* Edit the file `.\history.md`
12-
* Copy over text for the change description you just did for the `.\README.md`
13-
* Execute the newly created AzGovViz version to test if it completes successfully
14-
`.\pwsh\AzGovVizParallel.ps1 -ShowRunIdentifier`
15-
From the very last line of the output take a copy of the __run identifier__ and provide that with the pull request
16-
* Commit your changes
17-
* Create a pull request
18-
* Provide the __run identifier__ in the pull request as a proof of successful test
3+
1. Fork the repository.
4+
1. Change you working directory to `.\Azure-MG-Sub-Governance-Reporting`.
5+
1. In the folder `.\pwsh\dev` find the function you intend to work on and apply your changes.
6+
1. Edit the file `.\pwsh\dev\devAzGovVizParallel.ps1`.
7+
- In the param block update the parameter variable `$ProductVersion` accordingly.
8+
- Note: Do not change anything else in this file if you did not introduce new functions!
9+
1. Execute `.\pwsh\dev\buildAzGovVizParallel.ps1` - This step will rebuilt the main `.\pwsh\AzGovVizParallel.ps1` file, incorporating all changes you did in the `.\pwsh\dev` directory.
10+
1. Edit the file `.\README.md`.
11+
- Update the region `Release history`, replace the changes from the previous release with your changes.
12+
1. Edit the file `.\history.md`.
13+
- Copy over text for the change description you just did for the `.\README.md`.
14+
1. Execute the newly created AzGovViz version to test if it completes successfully by running `.\pwsh\AzGovVizParallel.ps1 -ShowRunIdentifier`.
15+
- From the very last line of the output copy the __run identifier__, you'll need that when you open your pull request.
16+
1. Commit your changes.
17+
1. Create a pull request
18+
- Provide the __run identifier__ in the pull request as a proof of successful test

0 commit comments

Comments
 (0)