【发布时间】:2021-09-28 20:39:14
【问题描述】:
我正在尝试 Get-AzWebAppSlot 工作正常。它返回数据,但 AppSettings 始终为空。我已经检查了门户 azure 上的插槽,它具有应用设置。
【问题讨论】:
标签: azure powershell
我正在尝试 Get-AzWebAppSlot 工作正常。它返回数据,但 AppSettings 始终为空。我已经检查了门户 azure 上的插槽,它具有应用设置。
【问题讨论】:
标签: azure powershell
确保您使用的是-Slot 参数。
Get-AzWebAppSlot -ResourceGroupName "test" -Name "mywebapp" -Slot "Staging"
https://docs.microsoft.com/en-us/powershell/module/az.websites/get-azwebappslot?view=azps-6.4.0
【讨论】: