有人可以告诉我如何构建一个脚本,可以列出应用服务和应用服务计划中的所有应用服务证书,应用服务是否与任何天蓝色订阅内链接?
答案 0 :(得分:0)
根据官方文档, Azure PowerShell 支持不支持证书和服务计划通过< strong>应用服务名称。如果您想这样做,可以通过资源组获取它们。
1.获取资源组中的Web App证书
Get-AzureRmWebAppCertificate -ResourceGroupName <resourcegroup>
2.从资源组获取应用服务计划
Get-AzureRmAppServicePlan -ResourceGroupName <resourcegroup>
有关详细信息,请参阅Get-AzureRmWebAppCertificate&amp; Get-AzureRmAppServicePlan