Skip to content

Commit 8467d5a

Browse files
author
naman-msft
committed
updated docs
1 parent b3a2a9a commit 8467d5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scenarios/azure-aks-docs/articles/aks/learn/quick-windows-container-deploy-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export WINDOWS_USERNAME="winadmin"
7777
2. Create a password for the administrator username you created in the previous step. The password must be a minimum of 14 characters and meet the [Windows Server password complexity requirements][windows-server-password].
7878

7979
```bash
80-
export WINDOWS_PASSWORD="$(openssl rand -base64 32 | tr -d '=+/' | cut -c1-14)"
80+
export WINDOWS_PASSWORD=$(echo "P@ssw0rd$(openssl rand -base64 10 | tr -dc 'A-Za-z0-9!@#$%^&*()' | cut -c1-6)")
8181
```
8282

8383
3. Create your cluster using the [az aks create][az-aks-create] command and specify the `--windows-admin-username` and `--windows-admin-password` parameters. The following example command creates a cluster using the values from *WINDOWS_USERNAME* and *WINDOWS_PASSWORD* you set in the previous commands. A random suffix is appended to the cluster name for uniqueness.

0 commit comments

Comments
 (0)