diff --git a/website/docs/r/virtual_machine.html.markdown b/website/docs/r/virtual_machine.html.markdown index db1d72683feb..85f4f7af35d0 100644 --- a/website/docs/r/virtual_machine.html.markdown +++ b/website/docs/r/virtual_machine.html.markdown @@ -246,6 +246,12 @@ resource "azurerm_virtual_machine" "test" { network_interface_ids = ["${azurerm_network_interface.test.id}"] vm_size = "Standard_DS1_v2" + # Uncomment this line to delete the OS disk automatically when deleting the VM + # delete_os_disk_on_termination = true + + # Uncomment this line to delete the data disks automatically when deleting the VM + # delete_data_disks_on_termination = true + storage_image_reference { publisher = "Canonical" offer = "UbuntuServer"