Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit Hold shift + click to select a range
8090ef3
Remove unused parameters and definitions from main.parameters.json an…
Harmanpreet-Microsoft Mar 17, 2026
f916056
Refactor parameter names for consistency and clarity across Bicep and…
Harmanpreet-Microsoft Mar 19, 2026
57a8de4
Merge remote-tracking branch 'origin/dev' into psl-bicep-param
Harmanpreet-Microsoft Mar 27, 2026
48ec242
Refactor Azure resource ID variables in workflow files for consistency
Vamshi-Microsoft Mar 27, 2026
2d7a5bd
Rename parameters for existing Log Analytics Workspace and AI Foundry…
Harmanpreet-Microsoft Apr 1, 2026
63ef3e7
Merge remote-tracking branch 'origin/dev' into psl-bicep-param
Harmanpreet-Microsoft Apr 3, 2026
69d02f6
fix: update variable references for log analytics workspace and AI pr…
Harmanpreet-Microsoft Apr 3, 2026
760c6fe
refactor: rename log analytics workspace resource ID variable to exis…
Harmanpreet-Microsoft Apr 3, 2026
56ca532
Merge remote-tracking branch 'origin/dev' into psl-bicep-param
Harmanpreet-Microsoft Apr 9, 2026
d44675e
fix: standardize environment variable names for imageTag and containe…
Harmanpreet-Microsoft Apr 9, 2026
3879ce9
fix: update environment variable names for image tag and AI project r…
Harmanpreet-Microsoft Apr 9, 2026
d1b8c50
feat: add aiModelDeployments parameter to main.parameters.json and ma…
Harmanpreet-Microsoft Apr 9, 2026
2373d4d
feat: add aiModelDeployments parameter for quota validation scripts
Harmanpreet-Microsoft Apr 9, 2026
fff4aa8
fix: update environment variable names for log analytics workspace ID…
Harmanpreet-Microsoft Apr 9, 2026
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
65 changes: 1 addition & 64 deletions infra/main.parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,69 +46,6 @@
},
"vmAdminPassword": {
"value": "${AZURE_ENV_JUMPBOX_ADMIN_PASSWORD}"
},
"backendExists": {
"value": "${SERVICE_BACKEND_RESOURCE_EXISTS=false}"
},
"backendDefinition": {
"value": {
"settings": [
{
"name": "",
"value": "${VAR}",
"_comment_name": "The name of the environment variable when running in Azure. If empty, ignored.",
"_comment_value": "The value to provide. This can be a fixed literal, or an expression like ${VAR} to use the value of 'VAR' from the current environment."
},
{
"name": "",
"value": "${VAR_S}",
"secret": true,
"_comment_name": "The name of the environment variable when running in Azure. If empty, ignored.",
"_comment_value": "The value to provide. This can be a fixed literal, or an expression like ${VAR_S} to use the value of 'VAR_S' from the current environment."
}
]
}
},
"frontendExists": {
"value": "${SERVICE_FRONTEND_RESOURCE_EXISTS=false}"
},
"frontendDefinition": {
"value": {
"settings": [
{
"name": "",
"value": "${VAR}",
"_comment_name": "The name of the environment variable when running in Azure. If empty, ignored.",
"_comment_value": "The value to provide. This can be a fixed literal, or an expression like ${VAR} to use the value of 'VAR' from the current environment."
},
{
"name": "",
"value": "${VAR_S}",
"secret": true,
"_comment_name": "The name of the environment variable when running in Azure. If empty, ignored.",
"_comment_value": "The value to provide. This can be a fixed literal, or an expression like ${VAR_S} to use the value of 'VAR_S' from the current environment."
}
]
}
},
"principalId": {
"value": "${AZURE_PRINCIPAL_ID}"
},
"aiModelDeployments": {
"value": [
{
"name": "gpt-4o",
"model": {
"name": "gpt-4o",
"version": "2024-08-06",
"format": "OpenAI"
},
"sku": {
"name": "GlobalStandard",
"capacity": 50
}
}
]
}
}
}
}
65 changes: 1 addition & 64 deletions infra/main.waf.parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,6 @@
"vmAdminPassword": {
"value": "${AZURE_ENV_JUMPBOX_ADMIN_PASSWORD}"
},
"backendExists": {
"value": "${SERVICE_BACKEND_RESOURCE_EXISTS=false}"
},
"enableMonitoring": {
"value": true
},
Expand All @@ -58,66 +55,6 @@
},
"enableScaling": {
"value": true
},
"backendDefinition": {
"value": {
"settings": [
{
"name": "",
"value": "${VAR}",
"_comment_name": "The name of the environment variable when running in Azure. If empty, ignored.",
"_comment_value": "The value to provide. This can be a fixed literal, or an expression like ${VAR} to use the value of 'VAR' from the current environment."
},
{
"name": "",
"value": "${VAR_S}",
"secret": true,
"_comment_name": "The name of the environment variable when running in Azure. If empty, ignored.",
"_comment_value": "The value to provide. This can be a fixed literal, or an expression like ${VAR_S} to use the value of 'VAR_S' from the current environment."
}
]
}
},
"frontendExists": {
"value": "${SERVICE_FRONTEND_RESOURCE_EXISTS=false}"
},
"frontendDefinition": {
"value": {
"settings": [
{
"name": "",
"value": "${VAR}",
"_comment_name": "The name of the environment variable when running in Azure. If empty, ignored.",
"_comment_value": "The value to provide. This can be a fixed literal, or an expression like ${VAR} to use the value of 'VAR' from the current environment."
},
{
"name": "",
"value": "${VAR_S}",
"secret": true,
"_comment_name": "The name of the environment variable when running in Azure. If empty, ignored.",
"_comment_value": "The value to provide. This can be a fixed literal, or an expression like ${VAR_S} to use the value of 'VAR_S' from the current environment."
}
]
}
},
"principalId": {
"value": "${AZURE_PRINCIPAL_ID}"
},
"aiModelDeployments": {
"value": [
{
"name": "gpt-4o",
"model": {
"name": "gpt-4o",
"version": "2024-08-06",
"format": "OpenAI"
},
"sku": {
"name": "GlobalStandard",
"capacity": 50
}
}
]
}
}
}
}
Loading