File tree Expand file tree Collapse file tree 2 files changed +19
-5
lines changed
azure-aks-docs/articles/aks Expand file tree Collapse file tree 2 files changed +19
-5
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ Create a resource group by calling the [az group create][az-group-create] comman
4040``` azurecli-interactive
4141export RANDOM_ID="$(openssl rand -hex 3)"
4242export RESOURCE_GROUP="myResourceGroup$RANDOM_ID"
43- export LOCATION ="centralindia"
44- az group create --name "${RESOURCE_GROUP}" --location "${LOCATION }"
43+ export REGION ="centralindia"
44+ az group create --name "${RESOURCE_GROUP}" --location "${REGION }"
4545```
4646
4747The following output example shows successful creation of a resource group:
@@ -114,7 +114,7 @@ export USER_ASSIGNED_IDENTITY_NAME="myIdentity$RANDOM_ID"
114114az identity create \
115115 --name "${USER_ASSIGNED_IDENTITY_NAME}" \
116116 --resource-group "${RESOURCE_GROUP}" \
117- --location "${LOCATION }" \
117+ --location "${REGION }" \
118118 --subscription "${SUBSCRIPTION}"
119119```
120120
@@ -253,7 +253,7 @@ The following example shows how to use the Azure role-based access control (Azur
253253 az keyvault create \
254254 --name "${KEYVAULT_NAME}" \
255255 --resource-group "${RESOURCE_GROUP}" \
256- --location "${LOCATION }" \
256+ --location "${REGION }" \
257257 --enable-purge-protection \
258258 --enable-rbac-authorization
259259 ```
Original file line number Diff line number Diff line change 382382 }
383383 ],
384384 "configurations" : {
385- "permissions" : []
385+ "permissions" : [],
386+ "configurableParams" : [
387+ {
388+ "inputType" : " textInput" ,
389+ "commandKey" : " RESOURCE_GROUP" ,
390+ "title" : " Resource Group Name" ,
391+ "defaultValue" : " "
392+ },
393+ {
394+ "inputType" : " textInput" ,
395+ "commandKey" : " CLUSTER_NAME" ,
396+ "title" : " AKS Cluster Name" ,
397+ "defaultValue" : " "
398+ }
399+ ]
386400 }
387401 },
388402 {
You can’t perform that action at this time.
0 commit comments