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
To get the ID of the Key Vault, and the key URI needed by this template, you can use the Azure CLI. The following command is an example of using the Azure CLI to get the Key Vault resource ID and URI:
257
+
258
+
```azurecli-interactive
259
+
az keyvault show --name mykeyvault --resource-group myresourcegroup --query "[id, properties.vaultUri]"
260
+
```
261
+
262
+
This command returns a value similar to the following text. The first value is the ID and the second is the URI:
1. Follow the steps in [Deploy resources from custom template](https://docs.microsoft.com/azure/azure-resource-manager/resource-group-template-deploy-portal#deploy-resources-from-custom-template). When you arrive at the __Edit template__ screen, paste in the template from this document.
@@ -105,31 +308,6 @@ az group deployment create \
105
308
106
309
For more information, see [Deploy resources with Resource Manager templates and Azure CLI](../azure-resource-manager/templates/deploy-cli.md) and [Deploy private Resource Manager template with SAS token and Azure CLI](../azure-resource-manager/templates/secure-template-with-sas-token.md).
107
310
108
-
## Advanced template
109
-
110
-
The following example template demonstrates how you to create a workspace with the following settings:
111
-
112
-
* Enable HBI for the workspace
113
-
* Enable encryption for the workspace
114
-
* Uses an existing Azure KeyVault
115
-
116
-
[TBD - reference template here]
117
-
118
-
To get the ID of the Key Vault, and the key URI needed by this template, you can use the Azure CLI. The following command is an example of using the Azure CLI to get the Key Vault resource ID and URI:
119
-
120
-
```azurecli-interactive
121
-
az keyvault show --name mykeyvault --resource-group myresourcegroup --query "[id, properties.vaultUri]"
122
-
```
123
-
124
-
This command returns a value similar to the following text. The first value is the ID and the second is the URI:
0 commit comments