Skip to content

Commit 797cbf6

Browse files
committed
update
1 parent 750a817 commit 797cbf6

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

infra/skillable/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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)] })
1717
Write-Host "Your unique suffix: $UNIQUE_SUFFIX"
1818
```
1919

2020
### Required Parameters
2121

2222
The 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

infra/skillable/skillable.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)] })
1010
Write-Host "Your unique suffix: $UNIQUE_SUFFIX"
1111

1212
# Deploy the Azure resources and save output to JSON

0 commit comments

Comments
 (0)