为此,我们使用 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
我已经安装了二头肌扩展。
我真的不确定可以做些什么进一步的帮助。