infra-v1/machines/vms/main.tf

118 lines
2.4 KiB
Terraform
Raw Normal View History

terraform {
required_providers {
proxmox = {
source = "telmate/proxmox"
}
}
}
provider "proxmox" {
pm_api_url = ""
pm_api_token_id = ""
pm_api_token_secret = ""
pm_tls_insecure = true
}
resource "proxmox_vm_qemu" "media-server" {
count = 1
name = "plex"
vmid = "200"
target_node = "milkyway"
clone = "ubuntu-2004-cloud"
agent = 1
os_type = "cloud-init"
cores = 4
sockets = 1
cpu = "host"
memory = 4096
scsihw = "virtio-scsi-pci"
bootdisk = "scsi0"
disk {
slot = 0
size = "50G"
type = "scsi"
storage = "local-lvm"
iothread = 1
}
network {
model = "virtio"
bridge = "vmbr0"
}
lifecycle {
ignore_changes = [
network,
]
}
ipconfig0 = "ip=192.168.0.50/24,gw=192.168.0.1"
}
resource "proxmox_vm_qemu" "media-manager" {
2022-06-11 01:15:13 +00:00
count = 1
name = "media-manager"
vmid = "201"
target_node = "milkyway"
2022-06-11 01:15:13 +00:00
clone = "ubuntu-2004-cloud"
agent = 1
os_type = "cloud-init"
cores = 4
sockets = 1
cpu = "host"
memory = 4096
scsihw = "virtio-scsi-pci"
bootdisk = "scsi0"
disk {
slot = 0
size = "20G"
type = "scsi"
storage = "local-lvm"
iothread = 1
}
network {
model = "virtio"
bridge = "vmbr0"
}
lifecycle {
ignore_changes = [
network,
]
}
ipconfig0 = "ip=192.168.0.51/24,gw=192.168.0.1"
}
2022-06-11 01:15:13 +00:00
resource "local_file" "ansible_inventory" {
content = templatefile("../../templates/hosts.tmpl",
{
media_managers = [
for ip in proxmox_vm_qemu.media-manager.*.ifconfig0 :
regex("(\\b25[0-5]|\\b2[0-4][0-9]|\\b[01]?[0-9][0-9]?)(\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}",
ip
)
]
media_servers = [
for ip in proxmox_vm_qemu.media-server.*.ifconfig0 :
regex("(\\b25[0-5]|\\b2[0-4][0-9]|\\b[01]?[0-9][0-9]?)(\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}",
ip
)
]
home_apps = [
for ip in proxmox_vm_qemu.main-docker.*.ifconfig0 :
regex("(\\b25[0-5]|\\b2[0-4][0-9]|\\b[01]?[0-9][0-9]?)(\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}",
ip
)
]
}
)
filename = "../../applications/hosts"
2022-06-11 01:15:13 +00:00
depends_on = [
proxmox_vm_qemu.media-manager,
proxmox_vm_qemu.media_servers
]
}