Skip to content

Commit e7b2c94

Browse files
authored
Merge pull request #104003 from lisaguthrie/clilinkupdate
Updating Azure CLI reference links
2 parents 6c78e68 + 1c7f4bf commit e7b2c94

File tree

7 files changed

+10
-30
lines changed

7 files changed

+10
-30
lines changed

articles/azure-app-configuration/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
- name: Configuration
9393
items:
9494
- name: Azure CLI
95-
href: https://docs.microsoft.com/cli/azure/ext/appconfig/appconfig?view=azure-cli-latest
95+
href: https://docs.microsoft.com/cli/azure/appconfig?view=azure-cli-latest
9696
- name: .NET Core provider
9797
href: https://go.microsoft.com/fwlink/?linkid=2074664
9898
- name: .NET Framework builder

articles/azure-app-configuration/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ landingContent:
118118
- linkListType: reference
119119
links:
120120
- text: Azure CLI
121-
url: https://docs.microsoft.com/cli/azure/ext/appconfig/appconfig?view=azure-cli-latest
121+
url: https://docs.microsoft.com/cli/azure/appconfig?view=azure-cli-latest
122122
- text: .NET Core provider
123123
url: https://go.microsoft.com/fwlink/?linkid=2074664
124124
- text: .NET Framework builder

articles/azure-app-configuration/scripts/cli-create-service.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ This sample script creates a new instance of Azure App Configuration in a new re
2121

2222
If you choose to install and use the CLI locally, this article requires that you are running the Azure CLI version 2.0 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install the Azure CLI](/cli/azure/install-azure-cli).
2323

24-
You need to install the Azure App Configuration CLI extension first by executing the following command:
25-
26-
az extension add -n appconfig
27-
2824
## Sample script
2925

3026
```azurecli-interactive
@@ -67,8 +63,8 @@ This script uses the following commands to create a new resource group and an Ap
6763
| Command | Notes |
6864
|---|---|
6965
| [az group create](/cli/azure/group#az-group-create) | Creates a resource group in which all resources are stored. |
70-
| [az appconfig create](/cli/azure/ext/appconfig/appconfig#ext-appconfig-az-appconfig-create) | Creates an App Configuration store resource. |
71-
| [az appconfig credential list](/cli/azure/ext/appconfig/appconfig/credential?view=azure-cli-latest) | List access keys for an App Configuration store. |
66+
| [az appconfig create](/cli/azure/appconfig#az-appconfig-create) | Creates an App Configuration store resource. |
67+
| [az appconfig credential list](/cli/azure/appconfig/credential#az-appconfig-credential-list) | List access keys for an App Configuration store. |
7268

7369
## Next steps
7470

articles/azure-app-configuration/scripts/cli-delete-service.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ This sample script deletes an instance of Azure App Configuration.
2828

2929
If you choose to install and use the CLI locally, this article requires that you are running the Azure CLI version 2.0 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install the Azure CLI](/cli/azure/install-azure-cli).
3030

31-
You need to install the Azure App Configuration CLI extension first by executing the following command:
32-
33-
az extension add -n appconfig
34-
3531
## Sample script
3632

3733
```azurecli-interactive
@@ -49,7 +45,7 @@ This script uses the following commands to delete an App Configuration store. Ea
4945

5046
| Command | Notes |
5147
|---|---|
52-
| [az appconfig delete](/cli/azure/ext/appconfig/appconfig#ext-appconfig-az-appconfig-delete) | Deletes an App Configuration store resource. |
48+
| [az appconfig delete](/cli/azure/appconfig#az-appconfig-delete) | Deletes an App Configuration store resource. |
5349

5450
## Next steps
5551

articles/azure-app-configuration/scripts/cli-export.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ This sample script exports key-values from an Azure App Configuration store.
2828

2929
If you choose to install and use the CLI locally, this article requires that you are running the Azure CLI version 2.0 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install the Azure CLI](/cli/azure/install-azure-cli).
3030

31-
You need to install the Azure App Configuration CLI extension first by executing the following command:
32-
33-
az extension add -n appconfig
34-
3531
## Sample script
3632

3733
```azurecli-interactive
@@ -49,7 +45,7 @@ This script uses the following commands to export from an App Configuration stor
4945

5046
| Command | Notes |
5147
|---|---|
52-
| [az appconfig kv export](/cli/azure/ext/appconfig/appconfig/kv#ext-appconfig-az-appconfig-kv-export) | Exports from an App Configuration store resource. |
48+
| [az appconfig kv export](/cli/azure/appconfig/kv#az-appconfig-kv-export) | Exports from an App Configuration store resource. |
5349

5450
## Next steps
5551

articles/azure-app-configuration/scripts/cli-import.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ This sample script imports key-value settings to an Azure App Configuration stor
2828

2929
If you choose to install and use the Azure CLI locally, this article requires that you are running the Azure CLI version 2.0 or later. Run `az --version` to find the version. To install or upgrade, see [Install the Azure CLI](/cli/azure/install-azure-cli).
3030

31-
You need to install the Azure App Configuration CLI extension first by executing the following command:
32-
33-
az extension add -n appconfig
34-
3531
## Sample script
3632

3733
```azurecli-interactive
@@ -49,7 +45,7 @@ This script uses the following commands to import to an App Configuration store.
4945

5046
| Command | Notes |
5147
|---|---|
52-
| [az appconfig kv import](/cli/azure/ext/appconfig/appconfig/kv#ext-appconfig-az-appconfig-kv-import) | Imports to an App Configuration store resource. |
48+
| [az appconfig kv import](/cli/azure/appconfig/kv#az-appconfig-kv-import) | Imports to an App Configuration store resource. |
5349

5450
## Next steps
5551

articles/azure-app-configuration/scripts/cli-work-with-keys.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ This sample script creates a new key-value in an Azure App Configuration store,
2828

2929
If you choose to install and use the CLI locally, this article requires that you are running the Azure CLI version 2.0 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install the Azure CLI](/cli/azure/install-azure-cli).
3030

31-
You need to install the Azure App Configuration CLI extension first by executing the following command:
32-
33-
az extension add -n appconfig
34-
3531
## Sample script
3632

3733
```azurecli-interactive
@@ -85,9 +81,9 @@ This script uses the following commands to operate on key-values in an App Confi
8581

8682
| Command | Notes |
8783
|---|---|
88-
| [az appconfig kv set](/cli/azure/ext/appconfig/appconfig/kv#ext-appconfig-az-appconfig-kv-set) | Creates or updates a key-value. |
89-
| [az appconfig kv list](/cli/azure/ext/appconfig/appconfig/kv#ext-appconfig-az-appconfig-kv-list) | Lists key-values in an App Configuration store. |
90-
| [az appconfig kv delete](/cli/azure/ext/appconfig/appconfig/kv#ext-appconfig-az-appconfig-kv-delete) | Deletes a key-value. |
84+
| [az appconfig kv set](/cli/azure/appconfig/kv#az-appconfig-kv-set) | Creates or updates a key-value. |
85+
| [az appconfig kv list](/cli/azure/appconfig/kv#az-appconfig-kv-list) | Lists key-values in an App Configuration store. |
86+
| [az appconfig kv delete](/cli/azure/appconfig/kv#az-appconfig-kv-delete) | Deletes a key-value. |
9187

9288
## Next steps
9389

0 commit comments

Comments
 (0)