如何列出Azure服务的所有可能的配置选项

问题描述 投票:1回答:2

我想知道是否有一种方法可以使用AZ CLI查看特定Azure服务的所有可用配置选项。目的是确保我们正确配置了所有内容。并能够质疑为什么某些配置选项未正确配置。

azure command-line-interface settings
2个回答
0
投票

0
投票
Properties

例如,您可以将命令用于Web应用程序,az resource show --ids <Resource ID of your azure resource> 全部返回。

properties

az resource show --ids /subscriptions/<subscription-id>/resourceGroups/<grouo-name>/providers/Microsoft.Web/sites/joywebapp1

此外,如果要设置属性,则可以使用enter image description here,如下所示。


az resource update
© www.soinside.com 2019 - 2024. All rights reserved.