@@ -12,9 +12,13 @@ import {
1212} from './modules/types.bicep'
1313
1414// ========== get up parameters from parameter file ========== //
15+ @description ('Name of the environment to deploy the solution into:' )
1516param environmentName string
17+ @description ('Location for the content understanding service: WestUS | SwedenCentral | AustraliaEast' )
1618param contentUnderstandingLocation content_understanding_available_location_type
19+ @description ('Type of GPT deployment to use: Standard | GlobalStandard' )
1720param deploymentType gpt_deployment_type = 'GlobalStandard'
21+ @description ('Name of the GPT model to deploy: gpt-4o-mini | gpt-4o | gpt-4' )
1822param gptModelName gpt_model_name_type = 'gpt-4o'
1923@minLength (1 )
2024@description ('Version of the GPT model to deploy:' )
@@ -23,8 +27,8 @@ param gptModelName gpt_model_name_type = 'gpt-4o'
2327])
2428param gptModelVersion string = '2024-08-06'
2529@minValue (10 )
26- @description ('Capacity of the GPT deployment:' )
27- param gptDeploymentCapacity int = 100
30+ @description ('Capacity of the GPT deployment: (minimum 10) ' )
31+ param gptDeploymentCapacity int
2832param useLocalBuild string = 'false'
2933
3034// ============ make up Parameters from bicep parameter module ========== //
@@ -41,6 +45,10 @@ param useLocalBuild string = 'false'
4145// }
4246// }
4347
48+ // param deployment_parameter default_deployment_param_type
49+ // param ai_deployment_parameter ai_deployment_param_type
50+ // param container_app_parameter container_app_deployment_info_type
51+
4452// =========== Build Parameters ========== //
4553var deployment_param default_deployment_param_type = {
4654 environment_name : environmentName
@@ -137,6 +145,7 @@ module avmKeyVault 'br/public:avm/res/key-vault/vault:0.12.1' = {
137145 ]
138146 enablePurgeProtection : false
139147 enableSoftDelete : true
148+ enableRbacAuthorization : true
140149 }
141150 scope : resourceGroup (resourceGroup ().name )
142151}
@@ -967,7 +976,7 @@ module avmAppConfig 'br/public:avm/res/app-configuration/configuration-store:0.6
967976// dependsOn: [roleAssignments]
968977// }
969978
970- // output CONTAINER_WEB_APP_NAME string = containerApps .outputs.containerAppWebName
971- // output CONTAINER_API_APP_NAME string = containerApps .outputs.containerAppApiName
972- // output CONTAINER_WEB_APP_FQDN string = containerApps .outputs.containweAppWebEndPoint
973- // output CONTAINER_API_APP_FQDN string = containerApps .outputs.containweAppApiEndPoint
979+ output CONTAINER_WEB_APP_NAME string = avmContainerApp_Web .outputs .name
980+ output CONTAINER_API_APP_NAME string = avmContainerApp_API .outputs .name
981+ output CONTAINER_WEB_APP_FQDN string = avmContainerApp_Web .outputs .fqdn
982+ output CONTAINER_API_APP_FQDN string = avmContainerApp_API .outputs .fqdn
0 commit comments