File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -9,19 +9,20 @@ This repository contains Azure infrastructure templates for deploying AI Foundry
99
1010## Configuration
1111
12- ** First, generate a random 4 -character suffix:**
12+ ** First, generate a random 6 -character suffix:**
1313
1414``` powershell
1515$chars = 'abcdefghijklmnopqrstuvwxyz0123456789'
16- $UNIQUE_SUFFIX = -join ((1..4 ) | ForEach { $chars[(Get-Random -Maximum $chars.Length)] })
16+ $UNIQUE_SUFFIX = -join ((1..6 ) | ForEach { $chars[(Get-Random -Maximum $chars.Length)] })
1717Write-Host "Your unique suffix: $UNIQUE_SUFFIX"
1818```
1919
2020### Required Parameters
2121
2222The following parameters are passed directly on the command line:
2323
24- - ** uniqueSuffix** : Unique 4-character identifier (use the generated ` $UNIQUE_SUFFIX ` variable)
24+ - ** location** : Azure region for deployment (e.g., "westus")
25+ - ** uniqueSuffix** : Unique 6-character identifier (use the generated ` $UNIQUE_SUFFIX ` variable)
2526
2627## Deployment Steps
2728
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ $MODEL_NAME = "gpt-4o-mini" # Updated to match the default model in Bicep templ
66
77# Generate a unique suffix
88$chars = ' abcdefghijklmnopqrstuvwxyz0123456789'
9- $UNIQUE_SUFFIX = -join ((1 .. 4 ) | ForEach { $chars [(Get-Random - Maximum $chars.Length )] })
9+ $UNIQUE_SUFFIX = -join ((1 .. 6 ) | ForEach { $chars [(Get-Random - Maximum $chars.Length )] })
1010Write-Host " Your unique suffix: $UNIQUE_SUFFIX "
1111
1212# Deploy the Azure resources and save output to JSON
You can’t perform that action at this time.
0 commit comments