gpt4 book ai didi

azure - 使用 bicep 部署逻辑应用 - 将 JSON 转换为有效的 Bicep

转载 作者:行者123 更新时间:2023-12-05 08:25:05 25 4
gpt4 key购买 nike

我想生成一个二头肌来构建逻辑应用程序。其样板是

resource logicApp 'Microsoft.Logic/workflows@2019-05-01' = {
name: 'lapp-${options.suffix}'
location: options.location
properties: {
definition: {
// here comes the definition
}
}
}

我的评论显示了应用程序本身的定义所在的位置。如果我知道从现有逻辑应用程序中获取 JSON(为了简洁起见,我省略了一些内容):

{
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"actions": {},
"contentVersion": "1.0.0.0",
"outputs": {},
"parameters": {},
"triggers": {
"manual": {
"inputs": {

},
"kind": "Http",
"type": "Request"
}
}
},
"parameters": {}
}

你必须将其转换为如下所示:

{
definition: {
'$schema': "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#"
actions: {}
contentVersion: '1.0.0.0'
outputs: {}
parameters: {}
triggers: {
'manual': {
inputs: {

}
kind: 'Http'
type: 'Request'
}
}
}
parameters: {}
}

这意味着例如:

  • 删除尾随逗号
  • 删除属性上的引号
  • 单引号某些属性,例如架构或自定义操作名称
  • 当单引号出现在逻辑应用中常见的值中时转义单引号

是否有任何转换器可以将 JSON 结构转换为有效的二头肌?我指的不是 bicep decompile,因为这假设您已经拥有有效的 ARM 模板。

最佳答案

一种方法是将定义保存在单独的文件中,并将 json 作为参数传递。

main.bicep:

// Parameters
param location string = resourceGroup().location
param logicAppName string
param logicAppDefinition object

// Basic logic app
resource logicApp 'Microsoft.Logic/workflows@2019-05-01' = {
name: logicAppName
location: location
properties: {
state: 'Enabled'
definition: logicAppDefinition.definition
parameters: logicAppDefinition.parameters
}
}

然后您可以像这样部署模板(此处使用 az cli 和 powershell):

$definitionPath="full/path/of/the/logic/app/definition.json"
az deployment group create `
--resource-group "resource group name" `
--template-file "full/path/of/the/main.bicep" `
--parameters logicAppName="logic app name" `
--parameters logicAppDefinition=@$definitionPath

通过这种方法,您不必在每次更新逻辑应用时修改“基础设施即代码”。

关于azure - 使用 bicep 部署逻辑应用 - 将 JSON 转换为有效的 Bicep,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68606269/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com