Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

Commit 8ebcbf1

Browse files
committed
remove unnecessary variable reference
1 parent 7236cb6 commit 8ebcbf1

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

infra/deploy.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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" \

infra/main.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
5151
param 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
5656
param existingAcrLoginServer string = ''
5757
param graphragImageName string = 'graphrag'

0 commit comments

Comments
 (0)