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/private-5g-core/complete-private-mobile-network-prerequisites.md
+12-11Lines changed: 12 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,33 +114,33 @@ You must set these up in addition to the [ports required for Azure Stack Edge (A
114
114
To use Azure Private 5G Core, you need to register some additional resource providers and features with your Azure subscription.
115
115
116
116
> [!TIP]
117
-
> If you do not have the Azure CLI installed, see installation instructions at [How to install the Azure CLI](/cli/azure/install-azure-cli). Alternatively, you can use the Azure Cloud Shell on the portal.
117
+
> If you do not have the Azure CLI installed, see installation instructions at [How to install the Azure CLI](/cli/azure/install-azure-cli). Alternatively, you can use the [Azure Cloud Shell](../cloud-shell/overview.md) on the portal.
118
118
119
119
1. Sign into the Azure CLI with a user account that is associated with the Azure tenant that you are deploying Azure Private 5G Core into:
120
-
```azurecli-interactive
120
+
```azurecli
121
121
az login
122
122
```
123
123
> [!TIP]
124
124
> See [Sign in interactively](/cli/azure/authenticate-azure-cli) for full instructions.
125
125
1. If your account has multiple subscriptions, make sure you are in the correct one:
126
-
```azurecli-interactive
126
+
```azurecli
127
127
az account set –-subscription <subscription_id>
128
128
```
129
129
1. Check the Azure CLI version:
130
-
```azurecli-interactive
130
+
```azurecli
131
131
az version
132
132
```
133
133
If the CLI version is below 2.37.0, you will need to upgrade your Azure CLI to a newer version. See [How to update the Azure CLI](/cli/azure/update-azure-cli).
134
134
1. Register the following resource providers:
135
-
```azurecli-interactive
135
+
```azurecli
136
136
az provider register --namespace Microsoft.MobileNetwork
137
137
az provider register --namespace Microsoft.HybridNetwork
138
138
az provider register --namespace Microsoft.ExtendedLocation
139
139
az provider register --namespace Microsoft.Kubernetes
140
140
az provider register --namespace Microsoft.KubernetesConfiguration
141
141
```
142
142
1. Register the following features:
143
-
```azurecli-interactive
143
+
```azurecli
144
144
az feature register --name allowVnfCustomer --namespace Microsoft.HybridNetwork
145
145
az feature register --name previewAccess --namespace Microsoft.Kubernetes
146
146
az feature register --name sourceControlConfiguration --namespace Microsoft.KubernetesConfiguration
@@ -150,13 +150,14 @@ To use Azure Private 5G Core, you need to register some additional resource prov
150
150
151
151
## Retrieve the Object ID (OID)
152
152
153
-
You need to obtain the object ID (OID) of the custom location resource provider in your Azure tenant. You will need to provide this OID when you configure your ASE to use AKS-HCI. You can obtain the OID using the Azure CLI. You will need to be an owner of your Azure subscription.
153
+
You need to obtain the object ID (OID) of the custom location resource provider in your Azure tenant. You will need to provide this OID when you configure your ASE to use AKS-HCI. You can obtain the OID using the Azure CLI or the Azure Cloud Shell on the portal. You'll need to be an owner of your Azure subscription.
154
154
155
-
You can retrieve the OID using the Azure CLI:
155
+
1. Sign in to the Azure CLI or Azure Cloud Shell.
156
+
1. Retrieve the OID:
156
157
157
-
```azurecli-interactive
158
-
az ad sp show --id bc313c14-388c-4e7d-a58e-70017303ee3b --query id -o tsv
159
-
```
158
+
```azurecli
159
+
az ad sp show --id bc313c14-388c-4e7d-a58e-70017303ee3b --query id -o tsv
160
+
```
160
161
161
162
This command queries the custom location and will output an OID string. Save this string for use later when you're commissioning the Azure Stack Edge device.
0 commit comments