Skip to content

Commit 734757b

Browse files
Remove aiModelDeployments parameter from main.parameters.json and main.waf.parameters.json; update AVM module version comment in ai-services.bicep; fix availabilityZones property in bastionHost.bicep
1 parent d8d1bbd commit 734757b

4 files changed

Lines changed: 2 additions & 32 deletions

File tree

infra/main.parameters.json

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -46,21 +46,6 @@
4646
},
4747
"vmAdminPassword": {
4848
"value": "${AZURE_ENV_VM_ADMIN_PASSWORD}"
49-
},
50-
"aiModelDeployments": {
51-
"value": [
52-
{
53-
"name": "${AZURE_ENV_GPT_MODEL_NAME}",
54-
"model": {
55-
"name": "${AZURE_ENV_GPT_MODEL_NAME}",
56-
"version": "${AZURE_ENV_GPT_MODEL_VERSION}"
57-
},
58-
"sku": {
59-
"name": "${AZURE_ENV_MODEL_DEPLOYMENT_TYPE}",
60-
"capacity": "${AZURE_ENV_GPT_MODEL_CAPACITY}"
61-
}
62-
}
63-
]
6449
}
6550
}
6651
}

infra/main.waf.parameters.json

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,6 @@
5555
},
5656
"enableScalability": {
5757
"value": true
58-
},
59-
"aiModelDeployments": {
60-
"value": [
61-
{
62-
"name": "${AZURE_ENV_GPT_MODEL_NAME}",
63-
"model": {
64-
"name": "${AZURE_ENV_GPT_MODEL_NAME}",
65-
"version": "${AZURE_ENV_GPT_MODEL_VERSION}"
66-
},
67-
"sku": {
68-
"name": "${AZURE_ENV_MODEL_DEPLOYMENT_TYPE}",
69-
"capacity": "${AZURE_ENV_GPT_MODEL_CAPACITY}"
70-
}
71-
}
72-
]
7358
}
7459
}
7560
}

infra/modules/ai-foundry/ai-services.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This module is here solely to provide network injection for Cognitive Services.
2-
// The AVM Module 'br/public:avm/res/cognitive-services/account:0.14.2' does not support that feature as of version 0.11.0
2+
// The AVM Module 'br/public:avm/res/cognitive-services/account:0.14.2' does not support that feature as of version 0.14.2
33
metadata name = 'Cognitive Services'
44
metadata description = 'This module deploys a Cognitive Service.'
55

infra/samples/network/bastionHost.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ module bastionHost 'br/public:avm/res/network/bastion-host:0.8.2' = {
8080
enableTelemetry: enableTelemetry
8181
publicIPAddressObject: {
8282
name: 'pip-${name}'
83-
zones: []
83+
availabilityZones: []
8484
}
8585
}
8686
dependsOn: [

0 commit comments

Comments
 (0)