Skip to content

Commit

Permalink
Merge branch 'main' into avd-agent-install-update
Browse files Browse the repository at this point in the history
  • Loading branch information
danycontre authored Oct 15, 2023
2 parents 84f01de + f9deb69 commit 73617b1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions workload/bicep/deploy-baseline.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,7 @@ var varBaseScriptUri = 'https://raw.githubusercontent.com/Azure/avdaccelerator/m
var varSessionHostConfigurationScriptUri = '${varBaseScriptUri}scripts/Set-SessionHostConfiguration.ps1'
var varSessionHostConfigurationScript = './Set-SessionHostConfiguration.ps1'
var varDiskEncryptionKeyExpirationInEpoch = dateTimeToEpoch(dateTimeAdd(time, 'P${string(diskEncryptionKeyExpirationInDays)}D'))
var varAvdAgentPackageLocation = 'https://wvdportalstorageblob.blob.${environment().suffixes.storage}/galleryartifacts/Configuration_09-08-2022.zip'
var varCreateStorageDeployment = (createAvdFslogixDeployment || createMsixDeployment == true) ? true : false
var varFslogixStorageSku = zoneRedundantStorage ? '${fslogixStoragePerformance}_ZRS' : '${fslogixStoragePerformance}_LRS'
var varMsixStorageSku = zoneRedundantStorage ? '${msixStoragePerformance}_ZRS' : '${msixStoragePerformance}_LRS'
Expand Down Expand Up @@ -1258,6 +1259,7 @@ module sessionHosts './modules/avdSessionHosts/deploy.bicep' = [for i in range(1
params: {
diskEncryptionSetResourceId: diskZeroTrust ? zeroTrust.outputs.ztDiskEncryptionSetResourceId : ''
timeZone: varTimeZoneSessionHosts
avdAgentPackageLocation: varAvdAgentPackageLocation
asgResourceId: (avdDeploySessionHosts || createAvdFslogixDeployment || createMsixDeployment) ? '${networking.outputs.applicationSecurityGroupResourceId}' : ''
identityServiceProvider: avdIdentityServiceProvider
createIntuneEnrollment: createIntuneEnrollment
Expand Down
11 changes: 11 additions & 0 deletions workload/portal-ui/portal-ui-baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,17 @@
]
}
},
{
"name": "identityDomainName",
"type": "Microsoft.Common.TextBox",
"visible": true,
"label": "Domain name",
"toolTip": "The full qualified domain name of the on-premises domain where the hybrid identities originated from, this information is used for Azure files authentication setup.",
"placeholder": "Example: contoso.com",
"constraints": {
"required": true
}
},
{
"name": "identityServiceProviderIntuneEnrollment",
"type": "Microsoft.Common.CheckBox",
Expand Down

0 comments on commit 73617b1

Please sign in to comment.