Skip to content

Commit

Permalink
update vm sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvand committed Dec 4, 2024
1 parent aa0113c commit 5449483
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Azure Resource Manager/SharePoint-ADFS/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"_generator": {
"name": "bicep",
"version": "0.31.92.45157",
"templateHash": "16379190582606587936"
"templateHash": "14893435318195681754"
},
"description": "Create a DC, a SQL Server 2022, and from 1 to 5 server(s) hosting a SharePoint Subscription / 2019 / 2016 farm with an extensive configuration, including trusted authentication, user profiles with personal sites, an OAuth trust (using a certificate), a dedicated IIS site for hosting high-trust add-ins, etc... The latest version of key softwares (including Fiddler, vscode, np++, 7zip, ULS Viewer) is installed. SharePoint machines have additional fine-tuning to make them immediately usable (remote administration tools, custom policies for Edge and Chrome, shortcuts, etc...).",
"author": "Yvand"
Expand Down Expand Up @@ -272,7 +272,7 @@
},
"vmDcSize": {
"type": "string",
"defaultValue": "Standard_B2s",
"defaultValue": "Standard_B2als_v2",
"metadata": {
"description": "Size of the DC virtual machine."
}
Expand All @@ -295,7 +295,7 @@
},
"vmSqlSize": {
"type": "string",
"defaultValue": "Standard_B2ms",
"defaultValue": "Standard_B2as_v2",
"metadata": {
"description": "Size of the SQL virtual machine."
}
Expand All @@ -318,7 +318,7 @@
},
"vmSharePointSize": {
"type": "string",
"defaultValue": "Standard_B4ms",
"defaultValue": "Standard_B4as_v2",
"metadata": {
"description": "Size of the SharePoint virtual machine(s)."
}
Expand Down
6 changes: 3 additions & 3 deletions Azure Resource Manager/SharePoint-ADFS/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ param timeZone string = 'Romance Standard Time'
param autoShutdownTime string = '1900'

@description('Size of the DC virtual machine.')
param vmDcSize string = 'Standard_B2s'
param vmDcSize string = 'Standard_B2als_v2'

@description('Type of storage for the managed disk. Visit https://docs.microsoft.com/en-us/rest/api/compute/disks/list#diskstorageaccounttypes for more information.')
@allowed([
Expand All @@ -237,7 +237,7 @@ param vmDcSize string = 'Standard_B2s'
param vmDcStorage string = 'StandardSSD_LRS'

@description('Size of the SQL virtual machine.')
param vmSqlSize string = 'Standard_B2ms'
param vmSqlSize string = 'Standard_B2as_v2'

@description('Type of storage for the managed disk. Visit https://docs.microsoft.com/en-us/rest/api/compute/disks/list#diskstorageaccounttypes for more information.')
@allowed([
Expand All @@ -252,7 +252,7 @@ param vmSqlSize string = 'Standard_B2ms'
param vmSqlStorage string = 'StandardSSD_LRS'

@description('Size of the SharePoint virtual machine(s).')
param vmSharePointSize string = 'Standard_B4ms'
param vmSharePointSize string = 'Standard_B4as_v2'

@description('Type of storage for the managed disk. Visit https://docs.microsoft.com/en-us/rest/api/compute/disks/list#diskstorageaccounttypes for more information.')
@allowed([
Expand Down

0 comments on commit 5449483

Please sign in to comment.