Skip to content

Commit e662b98

Browse files
authored
chore: update user in examples (#215)
Updates the user used in the the examples from the `[email protected]` SSO account to the `admin@local` API account for consistency. An administrative SSO account can still be used if desired. Signed-off-by: Ryan Johnson <[email protected]>
1 parent c2ec3e3 commit e662b98

9 files changed

+135
-135
lines changed

Diff for: VMware.CloudFoundation.PasswordManagement.psd1

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
# Module manifest for module 'VMware.CloudFoundation.PasswordManagement
55
# Generated by: Broadcom
6-
# Generated on: 2024-08-19
6+
# Generated on: 2024-08-20
77

88
@{
99
# Script module or binary module file associated with this manifest.
1010
RootModule = '.\VMware.CloudFoundation.PasswordManagement.psm1'
1111

1212
# Version number of this module.
13-
ModuleVersion = '1.8.3.1002'
13+
ModuleVersion = '1.8.3.1003'
1414

1515
# ID used to uniquely identify this module
1616
GUID = '34e5a0c7-6e6e-4f72-8b3c-1c28248f8ac9'

Diff for: VMware.CloudFoundation.PasswordManagement.psm1

+119-119
Large diffs are not rendered by default.

Diff for: docs/documentation/functions/Publish-WsaDirectoryPasswordPolicy.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,39 +31,39 @@ The cmdlet connects to SDDC Manager using the `-server`, `-user`, and `-pass` va
3131
### Example 1
3232

3333
```powershell
34-
Publish-WsaDirectoryPasswordPolicy -server sfo-wsa01.sfo.rainpole.io -user admin -pass VMw@re1! -policy PasswordExpiration -allDomains
34+
Publish-WsaDirectoryPasswordPolicy -server sfo-wsa01.sfo.rainpole.io -user admin@local -pass VMw@re1!VMw@re1! -policy PasswordExpiration -allDomains
3535
```
3636

3737
This example returns the password expiration policy for Workspace ONE Access Directory Users.
3838

3939
### Example 2
4040

4141
```powershell
42-
Publish-WsaDirectoryPasswordPolicy -server sfo-wsa01.sfo.rainpole.io -user admin -pass VMw@re1! -policy PasswordComplexity -allDomains
42+
Publish-WsaDirectoryPasswordPolicy -server sfo-wsa01.sfo.rainpole.io -user admin@local -pass VMw@re1!VMw@re1! -policy PasswordComplexity -allDomains
4343
```
4444

4545
This example returns the password complexity policy for Workspace ONE Access Directory Users.
4646

4747
### Example 3
4848

4949
```powershell
50-
Publish-WsaDirectoryPasswordPolicy -server sfo-wsa01.sfo.rainpole.io -user admin -pass VMw@re1! -policy AccountLockout -allDomains
50+
Publish-WsaDirectoryPasswordPolicy -server sfo-wsa01.sfo.rainpole.io -user admin@local -pass VMw@re1!VMw@re1! -policy AccountLockout -allDomains
5151
```
5252

5353
This example returns the account lockout policy for Workspace ONE Access Directory Users.
5454

5555
### Example 4
5656

5757
```powershell
58-
Publish-WsaDirectoryPasswordPolicy -server sfo-wsa01.sfo.rainpole.io -user admin -pass VMw@re1! -policy PasswordExpiration -allDomains -drift -reportPath "F:\Reporting" -policyFile "passwordPolicyConfig.json"
58+
Publish-WsaDirectoryPasswordPolicy -server sfo-wsa01.sfo.rainpole.io -user admin@local -pass VMw@re1!VMw@re1! -policy PasswordExpiration -allDomains -drift -reportPath "F:\Reporting" -policyFile "passwordPolicyConfig.json"
5959
```
6060

6161
This example returns the password expiration policy for Workspace ONE Access Directory Users and compares the configuration against the `passwordPolicyConfig.json` file.
6262

6363
### Example 5
6464

6565
```powershell
66-
Publish-WsaDirectoryPasswordPolicy -server sfo-wsa01.sfo.rainpole.io -user admin -pass VMw@re1! -policy PasswordExpiration -allDomains -drift
66+
Publish-WsaDirectoryPasswordPolicy -server sfo-wsa01.sfo.rainpole.io -user admin@local -pass VMw@re1!VMw@re1! -policy PasswordExpiration -allDomains -drift
6767
```
6868

6969
This example returns the password expiration policy for Workspace ONE Access Directory Users and compares the configuration against the product defaults.

Diff for: docs/documentation/functions/Request-WsaAccountLockout.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ This example retrieves the account lockout policy for Workspace ONE Access insta
3030
### Example 2
3131

3232
```powershell
33-
Request-WsaAccountLockout -server sfo-wsa01.sfo.rainpole.io -user admin -pass VMw@re1! -drift -reportPath "F:\Reporting" -policyFile "passwordPolicyConfig.json"
33+
Request-WsaAccountLockout -server sfo-wsa01.sfo.rainpole.io -user admin@local -pass VMw@re1!VMw@re1! -drift -reportPath "F:\Reporting" -policyFile "passwordPolicyConfig.json"
3434
```
3535

3636
This example retrieves the local user password complexity policy for Workspace ONE Access and checks the configuration drift using the provided configuration JSON.
3737

3838
### Example 3
3939

4040
```powershell
41-
Request-WsaAccountLockout -server sfo-wsa01.sfo.rainpole.io -user admin -pass VMw@re1! -drift
41+
Request-WsaAccountLockout -server sfo-wsa01.sfo.rainpole.io -user admin@local -pass VMw@re1!VMw@re1! -drift
4242
```
4343

4444
This example retrieves the local user password complexity policy for Workspace ONE Access and compares the configuration against the product defaults.

Diff for: docs/documentation/functions/Request-WsaPasswordComplexity.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ This example retrieves the password complexity policy for Workspace ONE Access i
3030
### Example 2
3131

3232
```powershell
33-
Request-WsaPasswordExpiration -server sfo-wsa01.sfo.rainpole.io -user admin -pass VMw@re1! -drift -reportPath "F:\Reporting" -policyFile "passwordPolicyConfig.json"
33+
Request-WsaPasswordExpiration -server sfo-wsa01.sfo.rainpole.io -user admin@local -pass VMw@re1!VMw@re1! -drift -reportPath "F:\Reporting" -policyFile "passwordPolicyConfig.json"
3434
```
3535

3636
This example retrieves the password complexity policy for Workspace ONE Access instance sfo-wsa01 and checks the configuration drift using the provided configuration JSON.
3737

3838
### Example 3
3939

4040
```powershell
41-
Request-WsaPasswordExpiration -server sfo-wsa01.sfo.rainpole.io -user admin -pass VMw@re1! -drift
41+
Request-WsaPasswordExpiration -server sfo-wsa01.sfo.rainpole.io -user admin@local -pass VMw@re1!VMw@re1! -drift
4242
```
4343

4444
This example retrieves the password complexity policy for Workspace ONE Access instance sfo-wsa01 and compares the configuration against the product defaults.

Diff for: docs/documentation/functions/Request-WsaPasswordExpiration.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ This example retrieves the password expiration policy for Workspace ONE Access i
3030
### Example 2
3131

3232
```powershell
33-
Request-WsaPasswordExpiration -server sfo-wsa01.sfo.rainpole.io -user admin -pass VMw@re1! -drift -reportPath "F:\Reporting" -policyFile "passwordPolicyConfig.json"
33+
Request-WsaPasswordExpiration -server sfo-wsa01.sfo.rainpole.io -user admin@local -pass VMw@re1!VMw@re1! -drift -reportPath "F:\Reporting" -policyFile "passwordPolicyConfig.json"
3434
```
3535

3636
This example retrieves the password expiration policy for Workspace ONE Access instance sfo-wsa01.sfo.rainpole.io and checks the configuration drift using the provided configuration JSON.
3737

3838
### Example 3
3939

4040
```powershell
41-
Request-WsaPasswordExpiration -server sfo-wsa01.sfo.rainpole.io -user admin -pass VMw@re1! -drift
41+
Request-WsaPasswordExpiration -server sfo-wsa01.sfo.rainpole.io -user admin@local -pass VMw@re1!VMw@re1! -drift
4242
```
4343

4444
This example retrieves the password expiration policy for Workspace ONE Access instance sfo-wsa01.sfo.rainpole.io and compares the configuration against the product defaults.

Diff for: docs/documentation/functions/Update-WsaAccountLockout.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The `Update-WsaAccountLockout` cmdlet configures the account lockout policy for
2222
### Example 1
2323

2424
```powershell
25-
Update-WsaAccountLockout -server sfo-wsa01.sfo.rainpole.io -user admin -pass VMw@re1! -failures 5 -failureInterval 180 -unlockInterval 900
25+
Update-WsaAccountLockout -server sfo-wsa01.sfo.rainpole.io -user admin@local -pass VMw@re1!VMw@re1! -failures 5 -failureInterval 180 -unlockInterval 900
2626
```
2727

2828
This example configures the account lockout policy for Workspace ONE Access.

Diff for: docs/documentation/functions/Update-WsaPasswordComplexity.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The `Update-WsaPasswordComplexity` cmdlet configures the password complexity pol
2222
### Example 1
2323

2424
```powershell
25-
Update-WsaPasswordComplexity -server sfo-wsa01.sfo.rainpole.io -user admin -pass VMw@re1! -minLength 15 -minLowercase 1 -minUppercase 1 -minNumeric 1 -minSpecial 1 -maxIdenticalAdjacent 1 -maxPreviousCharacters 0 -history 5
25+
Update-WsaPasswordComplexity -server sfo-wsa01.sfo.rainpole.io -user admin@local -pass VMw@re1!VMw@re1! -minLength 15 -minLowercase 1 -minUppercase 1 -minNumeric 1 -minSpecial 1 -maxIdenticalAdjacent 1 -maxPreviousCharacters 0 -history 5
2626
```
2727

2828
This example configures the password complexity policy for Workspace ONE Access.

Diff for: docs/documentation/functions/Update-WsaPasswordExpiration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The `Update-WsaPasswordExpiration` cmdlet configures the password expiration pol
2222
### Example 1
2323

2424
```powershell
25-
Update-WsaPasswordExpiration -server sfo-wsa01.sfo.rainpole.io -user admin -pass VMw@re1! -maxDays 999 -warnDays 14 -reminderDays 7 -tempPasswordHours 24
25+
Update-WsaPasswordExpiration -server sfo-wsa01.sfo.rainpole.io -user admin@local -pass VMw@re1!VMw@re1! -maxDays 999 -warnDays 14 -reminderDays 7 -tempPasswordHours 24
2626
```
2727

2828
This example configures the password expiration policy for Workspace ONE Access.

0 commit comments

Comments
 (0)