Skip to content

Commit

Permalink
deploymentPrefix
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrat2005 committed Sep 12, 2024
1 parent d35132a commit 018be2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ param namePrefix string = '#_namePrefix_#'
@minLength(4)
@maxLength(8)
@description('Optional. The prefix for the resource for the deployment. This value is used in key vault and storage account names in this template, as well as for the deploymentSettings.properties.deploymentConfiguration.scaleUnits.deploymentData.namingPrefix property which requires regex pattern: ^[a-zA-Z0-9-]{1,8}$.')
param deploymentPrefix string = namePrefix
param deploymentPrefix string = take('${take(namePrefix, 8)}${uniqueString(utcNow())}', 8)
@description('Optional. The username of the LCM deployment user created in Active Directory.')
param deploymentUsername string = 'deployUser'
@description('Optional. The password of the LCM deployment user and local administrator accounts.')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ param namePrefix string = '#_namePrefix_#'
@minLength(4)
@maxLength(8)
@description('Optional. The prefix for the resource for the deployment. This value is used in key vault and storage account names in this template, as well as for the deploymentSettings.properties.deploymentConfiguration.scaleUnits.deploymentData.namingPrefix property which requires regex pattern: ^[a-zA-Z0-9-]{1,8}$.')
param deploymentPrefix string = namePrefix
param deploymentPrefix string = take('${take(namePrefix, 8)}${uniqueString(utcNow())}', 8)
@description('Optional. The username of the LCM deployment user created in Active Directory.')
param deploymentUsername string = 'deployUser'
@description('Optional. The password of the LCM deployment user and local administrator accounts.')
Expand Down

0 comments on commit 018be2c

Please sign in to comment.