Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions solutions/azure-hub-spoke/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Run the following command to initiate the deployment with a Linux VM deployed to
az deployment group create \
--resource-group ${RESOURCEGROUP_NAME} \
--template-file main.bicep \
--parameters deployVirtualMachines=true adminUsername=azureadmin adminPassword=Password2023!
--parameters deployVirtualMachines=true adminUsername=azureadmin adminPassword=Password2026!
```

**Deploy with VPN gateway**
Expand All @@ -86,7 +86,7 @@ Run the following command to initiate the deployment with a Linux VM deployed to
az deployment group create \
--resource-group ${RESOURCEGROUP_NAME} \
--template-file main.bicep \
--parameters deployVirtualMachines=true adminUsername=azureadmin adminPassword=Password2023! deployVpnGateway=true
--parameters deployVirtualMachines=true adminUsername=azureadmin adminPassword=Password2026! deployVpnGateway=true
```

## Solution deployment parameters
Expand Down
6 changes: 3 additions & 3 deletions solutions/azure-hub-spoke/bicep/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -1241,7 +1241,7 @@ resource vmSpokeTwoWindows 'Microsoft.Compute/virtualMachines@2023-03-01' = if (
imageReference: {
publisher: 'MicrosoftWindowsServer'
offer: 'WindowsServer'
sku: '2022-datacenter-azure-edition'
sku: '2025-datacenter-azure-edition'
version: 'latest'
}
dataDisks: []
Expand Down Expand Up @@ -1271,8 +1271,8 @@ resource vmSpokeTwoWindows 'Microsoft.Compute/virtualMachines@2023-03-01' = if (
enableAutomaticUpdates: true
provisionVMAgent: true
patchSettings: {
patchMode: 'AutomaticByOS'
assessmentMode: 'ImageDefault'
patchMode: 'AutomaticByPlatform'
assessmentMode: 'AutomaticByPlatform'
}
}
}
Expand Down