Created
August 2, 2022 10:49
-
-
Save amaurybsouza/fc72f65a13f1c0f83a12024f839d22bb to your computer and use it in GitHub Desktop.
azure-virtual-machine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "azurerm_virtual_machine" "main" { | |
name = "${var.prefix}-vm" | |
location = azurerm_resource_group.example.location | |
resource_group_name = azurerm_resource_group.example.name | |
network_interface_ids = [azurerm_network_interface.main.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" | |
sku = "16.04-LTS" | |
version = "latest" | |
} | |
storage_os_disk { | |
name = "myosdisk1" | |
caching = "ReadWrite" | |
create_option = "FromImage" | |
managed_disk_type = "Standard_LRS" | |
} | |
os_profile { | |
computer_name = "hostname" | |
admin_username = "testadmin" | |
admin_password = "Password1234!" | |
} | |
os_profile_linux_config { | |
disable_password_authentication = false | |
} | |
tags = { | |
environment = "staging" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment