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
- Azure CLI version 2.47.0 or later installed and configured. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI][install-azure-cli].
29
29
- An Azure Key Vault to store certificates.
30
-
- A DNS solution, such as [Azure DNS](../dns/dns-getstarted-portal.md).
30
+
-(Optional) A DNS solution, such as [Azure DNS](../dns/dns-getstarted-portal.md).
31
31
32
32
### Install the `aks-preview` Azure CLI extension
33
33
@@ -147,20 +147,13 @@ az aks enable-addons -g <ResourceGroupName> -n <ClusterName> --addons azure-keyv
147
147
148
148
## Retrieve the add-on's managed identity object ID
149
149
150
-
Retrieve user managed identity object ID for the add-on. This identity is used in the next steps to grant permissions to manage the Azure DNS zone and retrieve certificates from the Azure Key Vault. Provide your *`<ResourceGroupName>`*, *`<ClusterName>`*, and *`<Location>`* in the script to retrieve the managed identity's object ID.
150
+
Retrieve user managed identity object ID for the add-on. This identity is used in the next steps to grant permissions to manage the Azure DNS zone and retrieve certificates from the Azure Key Vault. Provide your *`<ResourceGroupName>`*and *`<ClusterName>`* in the script to retrieve the managed identity's object ID.
151
151
152
152
```azurecli-interactive
153
153
# Provide values for your environment
154
154
RGNAME=<ResourceGroupName>
155
155
CLUSTERNAME=<ClusterName>
156
-
LOCATION=<Location>
157
-
158
-
# Retrieve user managed identity object ID for the add-on
159
-
SUBSCRIPTION_ID=$(az account show --query id --output tsv)
0 commit comments