你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
快速入门:使用 Azure CLI 在 Azure Spring Apps 中创建服务连接
本快速入门介绍如何使用 Azure CLI 和服务连接器将 Azure Spring Apps 连接到其他云资源。
使用服务连接器可以快速将计算服务连接到云服务,同时管理连接身份验证和网络设置。
先决条件
Azure 订阅。 如果没有 Azure 订阅,请在开始之前创建一个 Azure 免费帐户。
在服务连接器支持的区域中有至少一个由 Azure Spring Apps 托管的应用程序。 如果没有,则在 Azure Spring Apps 中部署你的第一个应用程序。
在 Azure Cloud Shell 中使用 Bash 环境。 有关详细信息,请参阅 Azure Cloud Shell 中的 Bash 快速入门。
如需在本地运行 CLI 参考命令,请安装 Azure CLI。 如果在 Windows 或 macOS 上运行,请考虑在 Docker 容器中运行 Azure CLI。 有关详细信息,请参阅如何在 Docker 容器中运行 Azure CLI。
如果使用的是本地安装,请使用 az login 命令登录到 Azure CLI。 若要完成身份验证过程,请遵循终端中显示的步骤。 有关其他登录选项,请参阅使用 Azure CLI 登录。
出现提示时,请在首次使用时安装 Azure CLI 扩展。 有关扩展详细信息,请参阅使用 Azure CLI 的扩展。
运行 az version 以查找安装的版本和依赖库。 若要升级到最新版本,请运行 az upgrade。
2.37.0 或更高版本的 Azure CLI。 若要升级到最新版本,请运行
az upgrade
。 如果使用 Azure Cloud Shell,则最新版本已安装。Azure CLI 或 Cloud Shell 中必须安装 Azure Spring Apps 扩展。 若要安装该模块,请运行
az extension add --name spring
。
初始设置
如果是首次使用服务连接器,请首先运行命令 az provider register 以注册服务连接器资源提供程序。
az provider register -n Microsoft.ServiceLinker
提示
可以通过运行命令
az provider show -n "Microsoft.ServiceLinker" --query registrationState
来检查资源提供程序是否已注册。 如果输出为Registered
,则已注册服务连接器。(可选) 运行命令“az spring connection list-support-types”以获取支持 Azure Spring Apps 的目标服务。
az spring connection list-support-types --output table
提示
如果系统未识别
az spring
命令,请检查是否已通过运行az extension add --name spring
安装了所需的扩展。
创建服务连接
使用托管标识或访问密钥从 Azure Spring Apps 创建连接。
重要
若要使用托管标识,你必须有权修改 Microsoft Entra ID 中的角色分配。 没有该权限,创建连接的操作会失败。 请要求订阅所有者向你授予角色分配权限,或使用访问密钥来创建连接。
运行
az spring connection create
命令,通过系统分配的托管标识创建到 Blob 存储的服务连接按照 CLI 或 Cloud Shell 的请求提供以下信息:
az spring connection create storage-blob --system-identity
设置 说明 The resource group which contains the spring-cloud
包含 Azure Spring Apps 托管的应用的资源组的名称。 Name of the spring-cloud service
Azure Spring Apps 资源的名称。 Name of the spring-cloud app
连接到目标服务的 Azure Spring Apps 托管的应用程序的名称。 The resource group which contains the storage account
包含存储帐户的资源组的名称。 Name of the storage account
要连接到的存储帐户的名称。 本指南使用 Blob 存储。
提示
如果没有 Blob 存储,可以运行 az spring connection create storage-blob --new --system-identity
来预配一个新的 Blob 存储,并使用托管标识将其直接连接到 Azure Spring Apps 托管的应用程序。
查看连接
运行 az spring connection list
命令以列出所有 Azure Spring Apps 的预配连接。
将以下命令中的占位符 <azure-spring-apps-resource-group>
、<azure-spring-apps-name>
和 <app-name>
替换为 Azure Spring Apps 资源组的名称、Azure Spring Apps 资源的名称和应用程序的名称。 还可以删除 --output table
选项,以查看有关连接的详细信息。
az spring connection list --resource-group <azure-spring-apps-resource-group> --service <azure-spring-apps-name> --app <app-name>--output table
输出还显示连接的预配状态:失败或成功。
后续步骤
有关服务连接器和 Azure Spring Apps 的详细信息,请参阅以下指南。