Skip to content

Commit 2d295bb

Browse files
committed
Fix casing
1 parent eeb732d commit 2d295bb

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ Once you've opened the project in [Codespaces](#github-codespaces), [Dev Contain
100100
101101
This will create a folder under `.azure/` in your project to store the configuration for this deployment. You may have multiple azd environments if desired.
102102
103+
3. (Optional) If you would like to customize the deployment to [use existing Azure resources](docs/deploy_existing.md), you can set the values now.
104+
103105
3. Provision the resources and deploy the code:
104106
105107
```shell

infra/main.bicep

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,17 +166,17 @@ module containerApps 'core/host/container-apps.bicep' = {
166166
var webAppName = replace('${take(prefix, 19)}-ca', '--', '-')
167167
var webAppIdentityName = '${prefix}-id-web'
168168

169-
var azureOpenAiKeySecret = !empty(azureOpenAIKey)
169+
var azureOpenAIKeySecret = !empty(azureOpenAIKey)
170170
? {
171171
'azure-openai-key': azureOpenAIKey
172172
}
173173
: {}
174-
var openAiComKeySecret = !empty(openAIComKey)
174+
var openAIComKeySecret = !empty(openAIComKey)
175175
? {
176176
'openaicom-key': openAIComKey
177177
}
178178
: {}
179-
var secrets = union(azureOpenAiKeySecret, openAiComKeySecret)
179+
var secrets = union(azureOpenAIKeySecret, openAIComKeySecret)
180180

181181
var azureOpenAIKeyEnv = !empty(azureOpenAIKey)
182182
? [

infra/main.parameters.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"azureOpenAIEndpoint": {
2727
"value": "${AZURE_OPENAI_ENDPOINT}"
2828
},
29-
"openAiChatHost": {
29+
"openAIChatHost": {
3030
"value": "${OPENAI_CHAT_HOST=azure}"
3131
},
3232
"chatModelName": {
@@ -41,7 +41,7 @@
4141
"chatDeploymentCapacity":{
4242
"value": "${AZURE_OPENAI_CHAT_DEPLOYMENT_CAPACITY}"
4343
},
44-
"openAiEmbedHost": {
44+
"openAIEmbedHost": {
4545
"value": "${OPENAI_EMBED_HOST=azure}"
4646
},
4747
"embedModelName":{

0 commit comments

Comments
 (0)