1

为此,我们使用 Microsoft 的二头肌尝试在 Azure 上部署资源。

对于代码的执行,我使用了 Visual Studio Code Insider。

注意这是我在此处发布的示例。

代码如下

    resource stg 'Microsoft.Storage/storageAccounts@2019-06-01' = {
  name: 'uniquestorage001' // must be globally unique
  location: 'eastus'
  kind: 'Storage'
  sku: {
    name: 'Standard_LRS'
  }
}

在终端我们使用以下命令来构建它

二头肌构建main.bicep

我收到以下错误消息

bicep: The term 'bicep' is not recognized as a name of a cmdlet, function, script file, or executable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again

我已经安装了二头肌扩展。

我真的不确定可以做些什么进一步的帮助。

4

1 回答 1

2

您可以按照此文档安装二头肌:
安装二头肌工具

您需要安装Azure CLI,然后才能安装二头肌:

az bicep install

要构建你的二头肌文件,你可以使用:

az bicep build --file main.bicep

此外,您不需要在部署之前构建您的二头肌文件,AZ CLI 允许您直接部署您的二头肌文件

az deployment group create --resource-group "my resource group name" --template-file ".\main.bicep"
于 2021-09-22T20:11:27.180 回答