Skip to content

Commit

Permalink
Update to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderSehr committed Dec 29, 2024
1 parent baa5216 commit 78718e7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,18 @@ param resourceLocation string = 'NorthEurope'
@description('Optional. A parameter to control if the deployment should wait for the image build to complete.')
param waitForImageBuild bool = true

/////////////////////////////
// Template Deployment //
/////////////////////////////
///////////////////////////////////////////////
// Multi-referenced deployment variables //
///////////////////////////////////////////////
var computeGalleryImageDefinitionName = 'sid-linux'
var assetsStorageAccountName = '<assetsStorageAccountName>'
var assetsStorageAccountContainerName = 'aibscripts'
var installPwshScriptName = 'Install-LinuxPowerShell.sh'
var initializeSoftwareScriptName = 'Initialize-LinuxSoftware.ps1'

/////////////////////////////
// Template deployment //
/////////////////////////////
module imageDeployment '../templates/image.deploy.bicep' = {
name: '${uniqueString(deployment().name, resourceLocation)}-image-sbx'
params: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,18 @@ param resourceLocation string = 'NorthEurope'
@description('Optional. A parameter to control if the deployment should wait for the image build to complete.')
param waitForImageBuild bool = true

/////////////////////////////
// Template Deployment //
/////////////////////////////
///////////////////////////////////////////////
// Multi-referenced deployment variables //
///////////////////////////////////////////////
var computeGalleryImageDefinitionName = 'sid-windows'
var assetsStorageAccountName = '<assetsStorageAccountName>'
var assetsStorageAccountContainerName = 'aibscripts'
var installPwshScriptName = 'Install-WindowsPowerShell.ps1'
var initializeSoftwareScriptName = 'Initialize-WindowsSoftware.ps1'

/////////////////////////////
// Template deployment //
/////////////////////////////
module imageDeployment '../templates/image.deploy.bicep' = {
name: '${uniqueString(deployment().name, resourceLocation)}-image-sbx'
params: {
Expand Down

0 comments on commit 78718e7

Please sign in to comment.