Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

az-appconfig: add page #7095

Merged
merged 6 commits into from
Nov 30, 2021
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions pages/common/az-appconfig.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# az appconfig

> Manage App configurations on Azure.
> Part of `az`, the command-line client for Microsoft Azure.
> More information: <https://docs.microsoft.com/en-us/cli/azure/appconfig?view=azure-cli-latest>.
navarroaxel marked this conversation as resolved.
Show resolved Hide resolved

- Create an App Configuration:

`az appconfig create --resource-group {{rg_name}} --name {{appconfig_name}} --location {{location}}`
navarroaxel marked this conversation as resolved.
Show resolved Hide resolved

- Delete an App Configuration:
navarroaxel marked this conversation as resolved.
Show resolved Hide resolved

`az appconfig delete --resource-group {{rg_name}} --name {{appconfig_name}}`

- List all App Configurations under the current subscription:

`az appconfig list`

- List all App Configurations under a resource group:
navarroaxel marked this conversation as resolved.
Show resolved Hide resolved

`az appconfig list --resource-group {{rg_name}}`

- Show properties of an App Configuration:

`az appconfig show --name {{appconfig_name}}`

- Update an App Configuration:
navarroaxel marked this conversation as resolved.
Show resolved Hide resolved

`az appconfig update --resource-group {{rg_name}} --name {{appconfig_name}}`