Skip to content

Commit

Permalink
Correct bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfulton committed Aug 24, 2023
1 parent 430c6b1 commit 19a10b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bicep/linux-server.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module vmModule 'modules/linux-server/vm.bicep' = {
serverName: serverName
vmSize: vmSize
isSpot: isSpot
dataDiskId: empty(dataDiskModule) ? '' : dataDiskModule.outputs.diskId
dataDiskId: addDataDisk ? dataDiskModule.outputs.diskId : ''
}
}

Expand Down

0 comments on commit 19a10b4

Please sign in to comment.