-
Notifications
You must be signed in to change notification settings - Fork 336
perf: Upgrade default VM size to Standard_D2s_v5 #365
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Changes from all commits
20c4498
1c8f512
2aa6b48
8634575
709eafb
4e874e2
84c395f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -205,8 +205,8 @@ Copy the contents from the production configuration file to your main parameters | |
| By default, random GUIDs are generated for VM credentials. To set custom credentials: | ||
|
|
||
| ```shell | ||
| azd env set AZURE_ENV_VM_ADMIN_USERNAME <your-username> | ||
| azd env set AZURE_ENV_VM_ADMIN_PASSWORD <your-password> | ||
| azd env set AZURE_ENV_JUMPBOX_ADMIN_USERNAME <your-username> | ||
| azd env set AZURE_ENV_JUMPBOX_ADMIN_PASSWORD <your-password> | ||
| ``` | ||
|
Comment on lines
205
to
210
|
||
|
|
||
| ### 3.3 Advanced Configuration (Optional) | ||
|
|
||
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -637,7 +637,7 @@ module virtualMachine 'br/public:avm/res/compute/virtual-machine:0.20.0' = if (e | |||||||||||||
| enableTelemetry: enableTelemetry | ||||||||||||||
| computerName: take(virtualMachineResourceName, 15) | ||||||||||||||
| osType: 'Windows' | ||||||||||||||
| vmSize: vmSize ?? 'Standard_D2s_v3' | ||||||||||||||
| vmSize: vmSize ?? 'Standard_D2s_v5' | ||||||||||||||
| adminUsername: vmAdminUsername ?? 'JumpboxAdminUser' | ||||||||||||||
| adminPassword: vmAdminPassword ?? 'JumpboxAdminP@ssw0rd1234!' | ||||||||||||||
|
Comment on lines
+640
to
642
|
||||||||||||||
| vmSize: vmSize ?? 'Standard_D2s_v5' | |
| adminUsername: vmAdminUsername ?? 'JumpboxAdminUser' | |
| adminPassword: vmAdminPassword ?? 'JumpboxAdminP@ssw0rd1234!' | |
| vmSize: !empty(vmSize) ? vmSize : 'Standard_D2s_v5' | |
| adminUsername: !empty(vmAdminUsername) ? vmAdminUsername : 'JumpboxAdminUser' | |
| adminPassword: !empty(vmAdminPassword) ? vmAdminPassword : 'JumpboxAdminP@ssw0rd1234!' |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,15 +38,15 @@ | |
| "azureAiServiceLocation": { | ||
| "value": "${AZURE_ENV_AI_SERVICE_LOCATION}" | ||
| }, | ||
| "vmSize": { | ||
| "value": "${AZURE_ENV_JUMPBOX_SIZE}" | ||
| }, | ||
| "vmAdminUsername": { | ||
| "value": "${AZURE_ENV_JUMPBOX_ADMIN_USERNAME}" | ||
| }, | ||
| "vmAdminPassword": { | ||
| "value": "${AZURE_ENV_JUMPBOX_ADMIN_PASSWORD}" | ||
| }, | ||
| "vmSize": { | ||
| "value": "${AZURE_ENV_VM_SIZE}" | ||
Ayaz-Microsoft marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| }, | ||
Ayaz-Microsoft marked this conversation as resolved.
Show resolved
Hide resolved
Comment on lines
+47
to
+49
|
||
| "backendExists": { | ||
| "value": "${SERVICE_BACKEND_RESOURCE_EXISTS=false}" | ||
| }, | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -566,7 +566,7 @@ module virtualMachine 'br/public:avm/res/compute/virtual-machine:0.20.0' = if (e | |||||||||||||
| enableTelemetry: enableTelemetry | ||||||||||||||
| computerName: take(virtualMachineResourceName, 15) | ||||||||||||||
| osType: 'Windows' | ||||||||||||||
| vmSize: vmSize ?? 'Standard_D2s_v3' | ||||||||||||||
| vmSize: vmSize ?? 'Standard_D2s_v5' | ||||||||||||||
| adminUsername: vmAdminUsername ?? 'JumpboxAdminUser' | ||||||||||||||
| adminPassword: vmAdminPassword ?? 'JumpboxAdminP@ssw0rd1234!' | ||||||||||||||
|
Comment on lines
+569
to
571
|
||||||||||||||
| vmSize: vmSize ?? 'Standard_D2s_v5' | |
| adminUsername: vmAdminUsername ?? 'JumpboxAdminUser' | |
| adminPassword: vmAdminPassword ?? 'JumpboxAdminP@ssw0rd1234!' | |
| vmSize: !empty(vmSize) ? vmSize : 'Standard_D2s_v5' | |
| adminUsername: !empty(vmAdminUsername) ? vmAdminUsername : 'JumpboxAdminUser' | |
| adminPassword: !empty(vmAdminPassword) ? vmAdminPassword : 'JumpboxAdminP@ssw0rd1234!' |
Uh oh!
There was an error while loading. Please reload this page.