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
Copy file name to clipboardExpand all lines: articles/aks/use-trusted-launch.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,13 @@ Perform the following steps to deploy an AKS cluster using the Azure CLI.
96
96
The following example creates a cluster named *myAKSCluster* with one node in the *myResourceGroup*, and enables Secure Boot and vTPM:
97
97
98
98
```azurecli
99
-
az aks create --name myAKSCluster --resource-group myResourceGroup --node-count 1 --enable-secure-boot --enable-vtpm --enable-managed-identity --generate-ssh-keys
99
+
az aks create \
100
+
--name myAKSCluster \
101
+
--resource-group myResourceGroup \
102
+
--node-count 1 \
103
+
--enable-secure-boot \
104
+
--enable-vtpm \
105
+
--generate-ssh-keys
100
106
```
101
107
102
108
2. Run the following command to get access credentials for the Kubernetes cluster. Use the [az aks get-credentials][az-aks-get-credentials] command and replace the values for the cluster name and the resource group name.
0 commit comments