Skip to content

Commit

Permalink
Update test baselines
Browse files Browse the repository at this point in the history
  • Loading branch information
Bicep Automation committed Mar 25, 2021
1 parent e89b73e commit f0b46da
Show file tree
Hide file tree
Showing 181 changed files with 6,387 additions and 6,387 deletions.
2 changes: 1 addition & 1 deletion docs/examples/101/1vm-2nics-2subnets-1vnet/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "2024074003850545161"
"templateHash": "8685616228884269474"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/aad-domainservices/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "3226200361043328418"
"templateHash": "4205327006373788658"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/aadds-dual-region-replica-sets/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "15572273201605460192"
"templateHash": "13636056119496885956"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/aci-linuxcontainer-public-ip/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "9120328205730102903"
"templateHash": "8807853108653742124"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "17474268025115212399"
"templateHash": "7309461425069000875"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/aks/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "4675384475882014116"
"templateHash": "12203380824824784324"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/api-management-create-with-msi/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "5786303015518904633"
"templateHash": "1276688745008986462"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/app-config/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "13239335818693703810"
"templateHash": "5866931617306594775"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "12140943735656405647"
"templateHash": "13389149125678967024"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "4129482451920023220"
"templateHash": "3284960287960567472"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/azure-automation-account/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "12561374295951696718"
"templateHash": "7215159231818387460"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/azure-bastion/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "4709391282784775045"
"templateHash": "12387196722844240935"
}
}
}
154 changes: 77 additions & 77 deletions docs/examples/101/azure-search-create/main.json
Original file line number Diff line number Diff line change
@@ -1,78 +1,78 @@
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"name": {
"type": "string",
"maxLength": 60,
"minLength": 2
},
"sku": {
"type": "string",
"defaultValue": "standard",
"allowedValues": [
"free",
"basic",
"standard",
"standard2",
"standard3",
"storage_optimized_l1",
"storage_optimized_l2"
]
},
"replicaCount": {
"type": "int",
"defaultValue": 1,
"maxValue": 12,
"minValue": 1
},
"partitionCount": {
"type": "int",
"defaultValue": 1,
"allowedValues": [
1,
2,
3,
4,
6,
12
]
},
"hostingMode": {
"type": "string",
"defaultValue": "default",
"allowedValues": [
"default",
"highDensity"
]
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]"
}
},
"functions": [],
"resources": [
{
"type": "Microsoft.Search/searchServices",
"apiVersion": "2020-08-01",
"name": "[parameters('name')]",
"location": "[parameters('location')]",
"sku": {
"name": "[parameters('sku')]"
},
"properties": {
"replicaCount": "[parameters('replicaCount')]",
"partitionCount": "[parameters('partitionCount')]",
"hostingMode": "[parameters('hostingMode')]"
}
}
],
"metadata": {
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "4423472138630897119"
}
}
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"name": {
"type": "string",
"maxLength": 60,
"minLength": 2
},
"sku": {
"type": "string",
"defaultValue": "standard",
"allowedValues": [
"free",
"basic",
"standard",
"standard2",
"standard3",
"storage_optimized_l1",
"storage_optimized_l2"
]
},
"replicaCount": {
"type": "int",
"defaultValue": 1,
"maxValue": 12,
"minValue": 1
},
"partitionCount": {
"type": "int",
"defaultValue": 1,
"allowedValues": [
1,
2,
3,
4,
6,
12
]
},
"hostingMode": {
"type": "string",
"defaultValue": "default",
"allowedValues": [
"default",
"highDensity"
]
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]"
}
},
"functions": [],
"resources": [
{
"type": "Microsoft.Search/searchServices",
"apiVersion": "2020-08-01",
"name": "[parameters('name')]",
"location": "[parameters('location')]",
"sku": {
"name": "[parameters('sku')]"
},
"properties": {
"replicaCount": "[parameters('replicaCount')]",
"partitionCount": "[parameters('partitionCount')]",
"hostingMode": "[parameters('hostingMode')]"
}
}
],
"metadata": {
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "8561775735081536951"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/azure-sentinel/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "13824683398828126020"
"templateHash": "10515402345866553252"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/azure-spring-cloud/activedeployment.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "14716049199041538326"
"templateHash": "15746856979165811195"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/azure-spring-cloud/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "16128097162225747691"
"templateHash": "2819991402361259177"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "13356438059833962882"
"templateHash": "8796653821229916580"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/basic-batch-account/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "4962501741369866600"
"templateHash": "16141591704461420729"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/basic-publicip/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "2482909878713352257"
"templateHash": "13545206772513300771"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/basic-publicip/publicIpAddress.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "16561850720946618919"
"templateHash": "7479937202196599945"
}
}
}
2 changes: 1 addition & 1 deletion docs/examples/101/cognitive-services/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"_generator": {
"name": "bicep",
"version": "dev",
"templateHash": "14401130277973061163"
"templateHash": "17946109655100943590"
}
}
}
Loading

0 comments on commit f0b46da

Please sign in to comment.