-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomputes.tf
36 lines (31 loc) · 936 Bytes
/
computes.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
resource "azurerm_linux_virtual_machine" "vm" {
name = "tutorial-vm"
location = azurerm_resource_group.vm-rg.location
resource_group_name = azurerm_resource_group.vm-rg.name
size = "Standard_D2ads_v5"
admin_username = var.vm_admin_username
network_interface_ids = [
azurerm_network_interface.nic.id
]
admin_ssh_key {
username = var.vm_admin_username
public_key = tls_private_key.vm_ssh_pk.public_key_openssh
}
os_disk {
caching = "ReadWrite"
storage_account_type = "Standard_LRS"
}
source_image_reference {
publisher = "Canonical"
offer = "UbuntuServer"
sku = "18.04-LTS"
version = "latest"
}
computer_name = "tutorial-vm"
disable_password_authentication = true
}
# RSA key of size 4096 bits
resource "tls_private_key" "vm_ssh_pk" {
algorithm = "RSA"
rsa_bits = 4096
}