This repository was archived by the owner on May 27, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -354,7 +354,6 @@ deployAzureResources () {
354354 --no-prompt \
355355 --resource-group $RESOURCE_GROUP \
356356 --template-file ./main.bicep \
357- --parameters " resourceGroupName=$RESOURCE_GROUP " \
358357 --parameters " resourceBaseName=$RESOURCE_BASE_NAME " \
359358 --parameters " apimName=$APIM_NAME " \
360359 --parameters " apimTier=$APIM_TIER " \
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ Managed Identity
2020@minLength (1 )
2121@maxLength (64 )
2222@description ('Name of the resource group that GraphRAG will be deployed in.' )
23- param resourceGroupName string
23+ param resourceGroupName string = az . resourceGroup (). name
2424
2525// optional parameters with reasonable defaults unless explicitly overridden (most names will be auto-generated if not provided)
2626@description ('Unique name to append to each resource' )
@@ -51,7 +51,7 @@ param restoreAPIM bool = false
5151param deployAoai bool = true
5252
5353@description ('Whether or not to deploy a new ACR resource instead of connecting to an existing service.' )
54- param deployAcr bool = true
54+ param deployAcr bool = false
5555// if existing ACR is used, the login server must be provided
5656param existingAcrLoginServer string = ''
5757param graphragImageName string = 'graphrag'
You can’t perform that action at this time.
0 commit comments