Skip to content

Commit db238bb

Browse files
Adding configurationProfile property to host.json (SchemaStore#5040)
* Adding configurationProfile property to host.json * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 0e00535 commit db238bb

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/schemas/json/host.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1509,12 +1509,17 @@
15091509
"telemetryMode": {
15101510
"description": "Used to enable output of logs and traces in an OpenTelemetry output format to one or more endpoints that support OpenTelemetry.",
15111511
"enum": ["OpenTelemetry"]
1512+
},
1513+
"configurationProfile": {
1514+
"description": "Configuration profile to use for the Function App. Settings defined by the configuration profile will be implicitly applied to the Function App.",
1515+
"type": "string"
15121516
}
15131517
},
15141518
"required": ["version"],
15151519
"examples": [
15161520
{
15171521
"version": "2.0",
1522+
"configurationProfile": "sample-profile",
15181523
"logging": {
15191524
"applicationInsights": {
15201525
"samplingSettings": {

src/test/host/host.v2.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"dynamicConcurrencyEnabled": true,
88
"snapshotPersistenceEnabled": true
99
},
10+
"configurationProfile": "sample-profile",
1011
"extensionBundle": {
1112
"id": "Microsoft.Azure.Functions.ExtensionBundle",
1213
"version": "[4.*, 5.0.0)"

0 commit comments

Comments
 (0)