如何比较 azure 中的两个应用服务设置

shi*_*ula 5 azure azure-app-service-envrmnt azure-web-app-service

如何比较两个不同应用服务中的应用服务配置设置?

Jax*_*ian 5

可以使用Azure 资源资源管理器导航到并查看应用服务配置的 JSON 表示。这是内置于 Azure 中的,不需要额外的工具。

对于我拥有的概念验证应用程序,我是这样导航的:

subscriptions
  -> My Subscription
    -> resourceGroups
      -> My PoC Apps
        -> providers
          -> Microsoft.Web
            -> sites
              -> MyTestApp
                -> config (click on config for some, expand it and browse children for other config)`
Run Code Online (Sandbox Code Playgroud)

我假设您知道如何通过各种方式(DIFF 工具等)比较两个不同的 JSON 块,所以我不会解释那部分。