我可以从部署的资源中派生出 Bicep 模板吗?

Can I derive a Bicep template from a deployed resource?

我正在为 IAC 评估 Bicep。为了快速入门,我想知道我是否可以从我已经在 Azure 中部署的资源中派生模板?

干杯

您可以使用 az bicep cli 将现有 JSON 模板反编译为 .bicep 文件:

az bicep decompile --file template.json

参见the documentation