使用 PowerShell 创建 Azure 应用程序配置存储区

此示例脚本使用 PowerShell 在新资源组中创建 Azure 应用程序配置的新实例。

如果没有 Azure 试用版订阅,请在开始前创建一个试用版订阅

若要执行示例脚本,需要正确安装 Azure PowerShell

使用管理员权限打开 PowerShell 窗口,并运行 Install-Module -Name Az 以安装 Azure PowerShell

示例脚本

# Create a resource group 
New-AzResourceGroup -Name <resource-group-name> -Location <location>

# Create an App Configuration store
New-AzAppConfigurationStore -Name <store-name> -ResourceGroupName <resource-group-name> -Location <location> -Sku <sku>

# Get the App Configuration connection string 
Get-AzAppConfigurationStoreKey -Name <store-name> -ResourceGroupName <resource-group-name>

清理资源

通过删除资源组来清理你部署的资源。

Remove-AzResourceGroup -Name <resource-group-name> 

脚本说明

此脚本使用以下命令创建新资源组和应用程序配置存储区。 表中的每条命令均链接到特定于命令的文档。

命令 注释
New-AzResourceGroup 创建用于存储所有资源的资源组。
New-AzAppConfigurationStore 创建应用程序配置存储区资源。
Get-AzAppConfigurationStoreKey 列出应用程序配置存储的访问密钥。

后续步骤

有关 Azure PowerShell 的详细信息,请查看 Azure PowerShell 文档

有关 PowerShell 的更多应用程序配置脚本示例,请参阅 Azure 应用程序配置 PowerShell 示例