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
- Added `Request-SddcManagerPasswordExpiration` cmdlet and docs to retrieve the password expiration policy for the default local users on an SDDC Manager appliance.
- Added `Update-SddcManagerPasswordExpiration` cmdlet and docs to update the password expiration policy for the default local users on an SDDC Manager appliance.
- Updated module version and build to v1.4.0.1000.
- Updated `CHANGELOG.md`.
Ref: #70
Signed-off-by: Ryan Johnson <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,11 @@
4
4
5
5
> Release Date: Unreleased
6
6
7
+
Enhancement:
8
+
9
+
- Added `Request-SddcManagerPasswordExpiration` cmdlet to retrieve the password expiration policy for the default local users on an SDDC Manager appliance. [GH-97](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-password-management/pull/97)
10
+
- Added `Update-SddcManagerPasswordExpiration` cmdlet to update the password expiration policy for the default local users on an SDDC Manager appliance. [GH-97](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-password-management/pull/97)
11
+
7
12
Bug Fixes:
8
13
9
14
- Updated `Get-PasswordPolicyDefault` to include support for version 4.4.1. [GH-95](https://github.com/vmware/powershell-module-for-vmware-cloud-foundation-password-management/pull/95)
This example retrieves the password expiration policy for an SDDC Manager and compares the configuration against the product defaults.
46
+
47
+
## Parameters
48
+
49
+
### -server
50
+
51
+
The fully qualified domain name of the SDDC Manager instance.
52
+
53
+
```yaml
54
+
Type: String
55
+
Parameter Sets: (All)
56
+
Aliases:
57
+
58
+
Required: True
59
+
Position: Named
60
+
Default value: None
61
+
Accept pipeline input: False
62
+
Accept wildcard characters: False
63
+
```
64
+
65
+
### -user
66
+
67
+
The username to authenticate to the SDDC Manager instance.
68
+
69
+
```yaml
70
+
Type: String
71
+
Parameter Sets: (All)
72
+
Aliases:
73
+
74
+
Required: True
75
+
Position: Named
76
+
Default value: None
77
+
Accept pipeline input: False
78
+
Accept wildcard characters: False
79
+
```
80
+
81
+
### -pass
82
+
83
+
The password to authenticate to the SDDC Manager instance.
84
+
85
+
```yaml
86
+
Type: String
87
+
Parameter Sets: (All)
88
+
Aliases:
89
+
90
+
Required: True
91
+
Position: Named
92
+
Default value: None
93
+
Accept pipeline input: False
94
+
Accept wildcard characters: False
95
+
```
96
+
97
+
### -rootPass
98
+
99
+
The password for the SDDC Manager appliance root account.
100
+
101
+
```yaml
102
+
Type: String
103
+
Parameter Sets: (All)
104
+
Aliases:
105
+
106
+
Required: True
107
+
Position: Named
108
+
Default value: None
109
+
Accept pipeline input: False
110
+
Accept wildcard characters: False
111
+
```
112
+
113
+
### -drift
114
+
115
+
Switch to compare the current configuration against the product defaults or a JSON file.
116
+
117
+
```yaml
118
+
Type: SwitchParameter
119
+
Parameter Sets: (All)
120
+
Aliases:
121
+
122
+
Required: False
123
+
Position: Named
124
+
Default value: False
125
+
Accept pipeline input: False
126
+
Accept wildcard characters: False
127
+
```
128
+
129
+
### -reportPath
130
+
131
+
The path to save the policy report.
132
+
133
+
```yaml
134
+
Type: String
135
+
Parameter Sets: (All)
136
+
Aliases:
137
+
138
+
Required: False
139
+
Position: Named
140
+
Default value: None
141
+
Accept pipeline input: False
142
+
Accept wildcard characters: False
143
+
```
144
+
145
+
### -policyFile
146
+
147
+
The path to the password policy file to compare against.
148
+
149
+
```yaml
150
+
Type: String
151
+
Parameter Sets: (All)
152
+
Aliases:
153
+
154
+
Required: False
155
+
Position: Named
156
+
Default value: None
157
+
Accept pipeline input: False
158
+
Accept wildcard characters: False
159
+
```
160
+
161
+
### Common Parameters
162
+
163
+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
0 commit comments