Skip to content

Commit

Permalink
Automated commit by GitHub Actions for new build [no ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Aug 14, 2024
1 parent 55e4ee0 commit a71b3c7
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 9 deletions.
2 changes: 1 addition & 1 deletion FunctionApp/profile.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Set-PSFConfig -FullName PSFramework.Message.style.NoColor -Value $true #This is

## Version Banner ## Updated by Build\Build-Zip-File.ps1

Write-PSFMessage -Level Host -Message "This is SessionHostReplacer version {0}" -StringValues 'v0.2.9-beta.10'
Write-PSFMessage -Level Host -Message "This is SessionHostReplacer version {0}" -StringValues 'v0.2.9-beta.11'


# Import Function Parameters
Expand Down
18 changes: 15 additions & 3 deletions deploy/arm/DeployAVDSessionHostReplacer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"_generator": {
"name": "bicep",
"version": "0.29.47.4906",
"templateHash": "2639632008673747003"
"templateHash": "504091068164114795"
}
},
"parameters": {
Expand Down Expand Up @@ -155,6 +155,14 @@
"description": "Required: Yes | Prefix used for the name of the session hosts."
}
},
"SessionHostNameSeparator": {
"type": "string",
"defaultValue": "-",
"maxLength": 1,
"metadata": {
"description": "Required: NO | Separator between prefix and number. | Default: -"
}
},
"TargetSessionHostCount": {
"type": "int",
"minValue": 0,
Expand Down Expand Up @@ -418,6 +426,10 @@
"name": "_SessionHostNamePrefix",
"value": "[parameters('SessionHostNamePrefix')]"
},
{
"name": "_SessionHostNameSeparator",
"value": "[parameters('SessionHostNameSeparator')]"
},
{
"name": "_SessionHostTemplate",
"value": "[reference(resourceId('Microsoft.Resources/deployments', 'deployStandardSessionHostTemplate'), '2022-09-01').outputs.TemplateSpecResourceId.value]"
Expand Down Expand Up @@ -519,7 +531,7 @@
"_generator": {
"name": "bicep",
"version": "0.29.47.4906",
"templateHash": "17647947307315439254"
"templateHash": "3794514016630886796"
}
},
"parameters": {
Expand Down Expand Up @@ -553,7 +565,7 @@
},
"FunctionAppZipUrl": {
"type": "string",
"defaultValue": "https://github.com/Azure/AVDSessionHostReplacer/releases/download/v0.2.9-beta.10/FunctionApp.zip",
"defaultValue": "https://github.com/Azure/AVDSessionHostReplacer/releases/download/v0.2.9-beta.11/FunctionApp.zip",
"metadata": {
"description": "Required: No | URL of the FunctionApp.zip file. This is the zip file containing the Function App code. | Default: The latest release of the Function App code."
}
Expand Down
2 changes: 1 addition & 1 deletion deploy/bicep/modules/deployFunctionApp.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ param LogAnalyticsWorkspaceId string = 'none'
param FunctionAppName string

@description('Required: No | URL of the FunctionApp.zip file. This is the zip file containing the Function App code. | Default: The latest release of the Function App code.')
param FunctionAppZipUrl string = 'https://github.com/Azure/AVDSessionHostReplacer/releases/download/v0.2.9-beta.10/FunctionApp.zip'
param FunctionAppZipUrl string = 'https://github.com/Azure/AVDSessionHostReplacer/releases/download/v0.2.9-beta.11/FunctionApp.zip'

@description('Required: No | App Service Plan Name | Default: Y1 for consumption based plan')
param AppPlanName string = 'Y1'
Expand Down
6 changes: 3 additions & 3 deletions deploy/portal-ui/portal-ui.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
"options": {
"icon": "Info",
"text": "When using a User Assigned Managed Identity, make sure the identity has the needed permissions in Azure and Entra. Follow the link for more info.",
"uri": "https://github.com/Azure/AVDReplacementPlans/blob/v0.2.9-beta.10/docs/Permissions.md"
"uri": "https://github.com/Azure/AVDReplacementPlans/blob/v0.2.9-beta.11/docs/Permissions.md"
}
}
]
Expand Down Expand Up @@ -184,7 +184,7 @@
"type": "Microsoft.Common.TextBlock",
"visible": true,
"options": {
"text": "AVD session host replacer Portal UI Version: v0.2.9-beta.10",
"text": "AVD session host replacer Portal UI Version: v0.2.9-beta.11",
"link": {
"label": "GitHub Repository",
"uri": "https://github.com/Azure/AVDSessionHostReplacer"
Expand Down Expand Up @@ -794,4 +794,4 @@
}
}
}
}
}
2 changes: 1 addition & 1 deletion docs/CodeDeploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ $TemplateParameters = @{
$paramNewAzResourceGroupDeployment = @{
Name = 'AVDSessionHostReplacer'
ResourceGroupName = $ResourceGroupName
TemplateUri = 'https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/v0.2.9-beta.10/deploy/arm/DeployAVDSessionHostReplacer.json'
TemplateUri = 'https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/v0.2.9-beta.11/deploy/arm/DeployAVDSessionHostReplacer.json'
# If you cloned the repo and want to deploy using the bicep file use this instead of the above line
#TemplateFile = '.\deploy\bicep\DeployAVDSessionHostReplacer.bicep'
Expand Down

0 comments on commit a71b3c7

Please sign in to comment.