Skip to content

Commit 63feafc

Browse files
authored
Update deployment template with the correct param name (#451)
### Motivation and Context <!-- Thank you for your contribution to the chat-copilot repo! Please help reviewers and future users, providing the following information: 1. Why is this change required? 2. What problem does it solve? 3. What scenario does it contribute to? 4. If it fixes an open issue, please link to the issue here. --> Two configs in the deployment templates have the wrong names. ### Description <!-- Describe your changes, the overall approach, the underlying design. These notes will help understanding how your code works. Thanks! --> Fix the names. ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [ ] The code builds clean without any errors or warnings - [ ] The PR follows the [Contribution Guidelines](https://github.com/microsoft/chat-copilot/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/chat-copilot/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [ ] All unit tests pass, and I have added new tests where possible - [ ] I didn't break anyone 😄
1 parent 738648b commit 63feafc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

scripts/deploy/main.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,15 +423,15 @@ resource appServiceWebConfig 'Microsoft.Web/sites/config@2022-09-01' = {
423423
value: 'Klarna Shopping'
424424
}
425425
{
426-
name: 'Plugins:0:Url'
426+
name: 'Plugins:0:ManifestDomain'
427427
value: 'https://www.klarna.com'
428428
}
429429
{
430430
name: 'Plugins:1:Name'
431431
value: 'WebSearcher'
432432
}
433433
{
434-
name: 'Plugins:1:Url'
434+
name: 'Plugins:1:ManifestDomain'
435435
value: 'https://${functionAppWebSearcherPlugin.properties.defaultHostName}'
436436
}
437437
{

scripts/deploy/main.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"_generator": {
66
"name": "bicep",
77
"version": "0.21.1.54444",
8-
"templateHash": "8121623595763502084"
8+
"templateHash": "11704216743072254394"
99
}
1010
},
1111
"parameters": {
@@ -558,15 +558,15 @@
558558
"value": "Klarna Shopping"
559559
},
560560
{
561-
"name": "Plugins:0:Url",
561+
"name": "Plugins:0:ManifestDomain",
562562
"value": "https://www.klarna.com"
563563
},
564564
{
565565
"name": "Plugins:1:Name",
566566
"value": "WebSearcher"
567567
},
568568
{
569-
"name": "Plugins:1:Url",
569+
"name": "Plugins:1:ManifestDomain",
570570
"value": "[format('https://{0}', reference(resourceId('Microsoft.Web/sites', format('function-{0}-websearcher-plugin', variables('uniqueName'))), '2022-09-01').defaultHostName)]"
571571
},
572572
{

0 commit comments

Comments
 (0)