Skip to content

Commit e730056

Browse files
author
naman-msft
committed
updated docs;
1 parent 5fcced6 commit e730056

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

scenarios/azure-aks-docs/articles/aks/workload-identity-deploy-cluster.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ Create a resource group by calling the [az group create][az-group-create] comman
4040
```azurecli-interactive
4141
export RANDOM_ID="$(openssl rand -hex 3)"
4242
export 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

4747
The following output example shows successful creation of a resource group:
@@ -114,7 +114,7 @@ export USER_ASSIGNED_IDENTITY_NAME="myIdentity$RANDOM_ID"
114114
az 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
```

scenarios/metadata.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,21 @@
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
{

0 commit comments

Comments
 (0)