Compare commits

..

No commits in common. "8d9eea67285dfd083319d492b0e770b7df292421" and "8d49e447e6418640e375408556fa777ca3ce6ae4" have entirely different histories.

2 changed files with 6 additions and 14 deletions

View File

@ -2,17 +2,8 @@
hostname: ${hostname} hostname: ${hostname}
fqdn: ${hostname}.${domain} fqdn: ${hostname}.${domain}
#cloud-config
# The above header must generally appear on the first line of a cloud config
# file, but all other lines that begin with a # are optional comments.
runcmd: runcmd:
# One-command install, from https://tailscale.com/download/ - curl -fsSL https://tailscale.com/install.sh | sh
- ['sh', '-c', 'curl -fsSL https://tailscale.com/install.sh | sh'] - tailscale up --auth-key=${TS_AUTHKEY}
# Set sysctl settings for IP forwarding (useful when configuring an exit node) - tailscale set --ssh
- ['sh', '-c', "echo 'net.ipv4.ip_forward = 1' | sudo tee -a /etc/sysctl.d/99-tailscale.conf && echo 'net.ipv6.conf.all.forwarding = 1' | sudo tee -a /etc/sysctl.d/99-tailscale.conf && sudo sysctl -p /etc/sysctl.d/99-tailscale.conf" ]
# Generate an auth key from your Admin console
# https://login.tailscale.com/admin/settings/keys
# and replace the placeholder below
- ['tailscale', 'up', '--auth-key=${TS_AUTHKEY}']

View File

@ -79,6 +79,7 @@ resource "proxmox_vm_qemu" "llamas" {
disk { disk {
size = var.disk_size size = var.disk_size
storage = var.storage storage = var.storage
iothread = true
} }
} }
scsi1 { scsi1 {