Skip to content

Commit

Permalink
Remove F size VM
Browse files Browse the repository at this point in the history
  • Loading branch information
ned1313 committed Aug 1, 2022
1 parent 3549b36 commit 1da9f22
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 06-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ resource "azurerm_virtual_machine" "training" {
location = azurerm_resource_group.training.location
resource_group_name = azurerm_resource_group.training.name
network_interface_ids = [azurerm_network_interface.training.id]
vm_size = "Standard_F2"
vm_size = "Standard_D2s_v4"
delete_os_disk_on_termination = true
delete_data_disks_on_termination = true
Expand Down
2 changes: 1 addition & 1 deletion 08-meta-arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resource "azurerm_virtual_machine" "training" {
location = azurerm_resource_group.training.location
resource_group_name = azurerm_resource_group.training.name
network_interface_ids = [azurerm_network_interface.training[count.index].id]
vm_size = "Standard_F2"
vm_size = "Standard_D2s_v4"
# ... leave the rest of the resource block unchanged...
}
Expand Down
2 changes: 1 addition & 1 deletion solution/lifecycle/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ prefix = "ghm"
location = "East US"
admin_username = "testadmin"
admin_password = "Password1234!"
vm_size = "Standard_F2"
vm_size = "Standard_D2s_v4"

0 comments on commit 1da9f22

Please sign in to comment.