Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions schemas/2022-01-01-preview/Microsoft.App.json
Original file line number Diff line number Diff line change
Expand Up @@ -904,8 +904,8 @@
{
"type": "string",
"enum": [
"multiple",
"single"
"Multiple",
"Single"
]
},
{
Expand Down
19 changes: 17 additions & 2 deletions schemas/2022-03-01/Microsoft.App.json
Original file line number Diff line number Diff line change
Expand Up @@ -904,8 +904,8 @@
{
"type": "string",
"enum": [
"multiple",
"single"
"Multiple",
"Single"
]
},
{
Expand Down Expand Up @@ -2389,6 +2389,10 @@
],
"description": "Configuration of application logs"
},
"daprAIConnectionString": {
"type": "string",
"description": "Application Insights connection string used by Dapr to export Service to Service communication telemetry"
},
"daprAIInstrumentationKey": {
"type": "string",
"description": "Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry"
Expand All @@ -2403,6 +2407,17 @@
}
],
"description": "Configuration properties for apps environment to join a Virtual Network"
},
"zoneRedundant": {
"oneOf": [
{
"type": "boolean"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Whether or not this Managed Environment is zone-redundant."
}
},
"description": "Managed environment resource specific properties"
Expand Down