PowerShell を使用して Azure App Configuration ストアを削除する
このサンプル スクリプトでは、PowerShell を使用して Azure App Configuration のインスタンスを削除します。
Azure サブスクリプションをお持ちでない場合は、開始する前に Azure 無料アカウントを作成してください。
このサンプル スクリプトを実行するには、Azure PowerShell の機能設定が必要です。
管理者権限で PowerShell ウィンドウを開き、Install-Module -Name Az
を実行して Azure PowerShell をインストールします
サンプル スクリプト
# Delete an App Configuration store
Remove-AzAppConfigurationStore -Name <store-name> -ResourceGroupName <resource-group-name>
スクリプトの説明
このスクリプトでは、次のコマンドを使用して App Configuration ストアを削除します。 表内の各コマンドは、それぞれのドキュメントにリンクされています。
コマンド | メモ |
---|---|
Remove-AzAppConfigurationStore | App Configuration ストアを削除します。 |
次のステップ
Azure PowerShell の詳細については、Azure PowerShell のドキュメントを確認してください。
PowerShell 用のその他の App Configuration スクリプト サンプルについては、Azure App Configuration PowerShell サンプルを参照してください。