2021-11-30 16:26:54 -05:00
|
|
|
# az appconfig
|
|
|
|
|
|
|
|
> Manage App configurations on Azure.
|
2023-10-15 09:42:29 +02:00
|
|
|
> Part of `azure-cli` (also known as `az`).
|
2022-10-04 20:36:23 +05:30
|
|
|
> More information: <https://learn.microsoft.com/cli/azure/appconfig>.
|
2021-11-30 16:26:54 -05:00
|
|
|
|
|
|
|
- Create an App Configuration:
|
|
|
|
|
2025-05-11 20:07:11 +03:00
|
|
|
`az appconfig create {{[-n|--name]}} {{name}} {{[-g|--resource-group]}} {{group_name}} {{[-l|--location]}} {{location}}`
|
2021-11-30 16:26:54 -05:00
|
|
|
|
|
|
|
- Delete a specific App Configuration:
|
|
|
|
|
2025-05-11 20:07:11 +03:00
|
|
|
`az appconfig delete {{[-g|--resource-group]}} {{rg_name}} {{[-n|--name]}} {{appconfig_name}}`
|
2021-11-30 16:26:54 -05:00
|
|
|
|
|
|
|
- List all App Configurations under the current subscription:
|
|
|
|
|
|
|
|
`az appconfig list`
|
|
|
|
|
|
|
|
- List all App Configurations under a specific resource group:
|
|
|
|
|
2025-05-11 20:07:11 +03:00
|
|
|
`az appconfig list {{[-g|--resource-group]}} {{rg_name}}`
|
2021-11-30 16:26:54 -05:00
|
|
|
|
|
|
|
- Show properties of an App Configuration:
|
|
|
|
|
2025-05-11 20:07:11 +03:00
|
|
|
`az appconfig show {{[-n|--name]}} {{appconfig_name}}`
|
2021-11-30 16:26:54 -05:00
|
|
|
|
|
|
|
- Update a specific App Configuration:
|
|
|
|
|
2025-05-11 20:07:11 +03:00
|
|
|
`az appconfig update {{[-g|--resource-group]}} {{rg_name}} {{[-n|--name]}} {{appconfig_name}}`
|