Skip to content

Commit c27f703

Browse files
solution maxLength changed to 16
1 parent 1db265a commit c27f703

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

infra/deploy_ai_foundry.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Creates Azure dependent resources for Azure AI studio
22

33
@minLength(3)
4-
@maxLength(15)
4+
@maxLength(16)
55
@description('Required. Contains Solution Name')
66
param solutionName string
77

@@ -55,7 +55,7 @@ var workspaceName = 'log-${solutionName}'
5555
var applicationInsightsName = 'appi-${solutionName}'
5656
var keyvaultName = 'kv-${solutionName}'
5757
var location = solutionLocation //'eastus2'
58-
var aiProjectName = 'aifp-${solutionName}'
58+
var aiProjectName = 'proj-${solutionName}'
5959
var aiSearchName = 'srch-${solutionName}'
6060
var aiSearchConnectionName = 'myCon-${solutionName}'
6161

infra/deploy_app_service.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
targetScope = 'resourceGroup'
33

44
@minLength(3)
5-
@maxLength(15)
5+
@maxLength(16)
66
@description('Required. Contains Solution Name.')
77
param solutionName string
88

infra/deploy_managed_identity.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
targetScope = 'resourceGroup'
33

44
@minLength(3)
5-
@maxLength(15)
5+
@maxLength(16)
66
@description('Required. Contains Solution Name.')
77
param solutionName string
88

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
targetScope = 'resourceGroup'
33
//var abbrs = loadJsonContent('./abbreviations.json')
44
@minLength(3)
5-
@maxLength(15)
5+
@maxLength(16)
66
@description('Required. A unique prefix for all resources in this deployment. This should be 3-20 characters long:')
77
param solutionName string = 'kmgen'
88

0 commit comments

Comments
 (0)