Skip to content

Commit

Permalink
strip hypen from resourceGroupPrefix
Browse files Browse the repository at this point in the history
  • Loading branch information
ajai-d committed Oct 24, 2023
1 parent 7472b4a commit d498f18
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deploy/infrastructure/cli/deploy.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
param (
[string]$resourceGroupPrefix = "myagi-1",
[string]$resourceGroupPrefix = "miyagi1",
[string]$location = "eastus",
[string]$resourceGroupCount = 1,
[string]$subscriptionId = "SubscriptionId is required"
Expand Down Expand Up @@ -28,7 +28,9 @@ $skipAzureContainerApps = "false"
$skipAzureContainerRegistry = "false"
$skipAPIM = "false"

# strip - from resourceGroupPrefix

$resourceGroupPrefix = $resourceGroupPrefix.Replace("-","");

# create resource groups in a loop for rgIndex
# if skipRg is true, skip creating resource group
Expand Down

0 comments on commit d498f18

Please sign in to comment.