Skip to content

Commit b4f5483

Browse files
committed
v1.4.0 release
1 parent cc1b1af commit b4f5483

File tree

6 files changed

+537
-287
lines changed

6 files changed

+537
-287
lines changed

.github/workflows/Release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
# GitHub event payload
3737
# https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#release
38-
tweet-message: "[New Release] ${{ github.event.repository.name }} ${{ github.event.release.tag_name }}! Check out what's new! ${{ github.event.release.html_url }} #VMware #vSphere #AsBuiltReport #vExpert"
38+
tweet-message: "[New Release] ${{ github.event.repository.name }} ${{ github.event.release.tag_name }}! Check out what's new! ${{ github.event.release.html_url }} #VMware #vSphere #AsBuiltReport #PowerShell #PowerCLI #vExpert"
3939
env:
4040
TWITTER_CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
4141
TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}

AsBuiltReport.VMware.vSphere.json

372 Bytes
Binary file not shown.

AsBuiltReport.VMware.vSphere.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'AsBuiltReport.VMware.vSphere.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.3.3.1'
15+
ModuleVersion = '1.4.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = 'Desktop'

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# :arrows_clockwise: VMware vSphere As Built Report Changelog
22

3+
## [[1.4.0](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/releases/tag/v1.4.0)] - 2022-07-24
4+
### Added
5+
- Add filter functionality to report on specifically named clusters ([Fix #96](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/issues/96))
6+
- Add vCenter Resource Summary
7+
- Add vCenter Machine SSL Certificate information
8+
- Add VMHost Machine SSL Certificate information
9+
- Add vCenter & VMHost certificate healthcheck
10+
- Add vCenter Server backup information
11+
12+
### Fixed
13+
- VM count for Cluster InfoLevel 1
14+
15+
### Changed
16+
- Increased VMware PowerCLI required version to 12.7 for VMware Update Manager support for PowerShell 7
17+
- Improve wording for summary & advanced summary section paragraphs
18+
- Code improvements
19+
320
## [[1.3.3.1](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/releases/tag/v1.3.3.1)] - 2022-04-21
421

522
### Added

README.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ For a complete report, the following role assigned privileges are required;
111111

112112
Open a PowerShell terminal window and install each of the required modules.
113113

114-
:warning: VMware PowerCLI 12.3 or higher is required. Please ensure older PowerCLI versions have been uninstalled.
114+
:warning: VMware PowerCLI 12.7 or higher is required. Please ensure older PowerCLI versions have been uninstalled.
115115

116116
```powershell
117-
install-module VMware.PowerCLI -MinimumVersion 12.3 -AllowClobber
117+
install-module VMware.PowerCLI -MinimumVersion 12.7 -AllowClobber
118118
install-module AsBuiltReport.VMware.vSphere
119119
```
120120

@@ -151,7 +151,24 @@ The **Options** schema allows certain options within the report to be toggled on
151151
| Sub-Schema | Setting | Default | Description |
152152
|-----------------|--------------|---------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
153153
| ShowLicenseKeys | true / false | false | Toggle to mask/unmask vSphere license keys<br><br> **Masked License Key**<br>\*\*\*\*\*-\*\*\*\*\*-\*\*\*\*\*-56YDM-AS12K<br><br> **Unmasked License Key**<br>AKLU4-PFG8M-W2D8J-56YDM-AS12K |
154-
| ShowVMSnapshots | true / false | true | Toggle to enable/disable reporting of VM snapshots |
154+
| ShowVMSnapshots | true / false | true | Toggle to enable/disable reporting of VM snapshots |
155+
| ApplianceBackupJobs | User defined | 7 | The number of vCenter Server appliance backup jobs to display |
156+
157+
### Filter
158+
The **Filter** schema is used to filter information for specifically named vSphere clusters. The generated as-built will only provide information which are specific to these named clusters.
159+
160+
#### Report on all clusters
161+
```json
162+
"Filter": {
163+
"Cluster": ["*"]
164+
}
165+
```
166+
#### Report on specific named clusters, e.g. `Prod-Cluster` and `Test-Cluster`
167+
```json
168+
"Filter": {
169+
"Cluster": ["Prod-Cluster","Test-Cluster"]
170+
}
171+
```
155172

156173
### InfoLevel
157174
The **InfoLevel** schema allows configuration of each section of the report at a granular level. The following sections can be set.

0 commit comments

Comments
 (0)