zcli任务中的Azure DevOps参考输出变量

时间:2019-11-18 13:25:49

标签: azure azure-devops devops azure-cli az

我在ARM模板中拥有它。

    "outputs": {
        "storageName": {
            "type": "string",
            "value": "[parameters('storageName')]"
        }
    }
}

我想在使用此名称后立即在该名称的存储帐户上启用一个静态站点,... az storage blob service-properties update --account-name $(storageName) --static-website --404-document "404.html" --index-document "index.html"

但是我怀疑我没有从部署任务中正确输出它,因为上面的CLI命令不起作用。

0 个答案:

没有答案