Skip to content

Commit

Permalink
Merge pull request #11 from jpfulton:notes-on-setup
Browse files Browse the repository at this point in the history
Attempt bug fix.
  • Loading branch information
jpfulton authored Aug 24, 2023
2 parents f3ace01 + 1d79dae commit 430c6b1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions SETUP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Setup

Follow main README.

cd scripts

./create-resource-group.sh personal-network northcentralus
./create-network.sh personal-network
./create-linux-server.sh -s -o personal-network vpn-server
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.outputs.diskId) ? '' : dataDiskModule.outputs.diskId
dataDiskId: empty(dataDiskModule) ? '' : dataDiskModule.outputs.diskId
}
}

Expand Down

0 comments on commit 430c6b1

Please sign in to comment.